Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
InlineCodeCharacter.cs
2
4{
8 public sealed class InlineCodeCharacter : Atom
9 {
14 : base(Document, Source, Character)
15 {
16 }
17
22 public override void IncrementStatistics(MarkdownStatistics Statistics)
23 {
24 Statistics.NrInlineCode++;
25 }
26 }
27}
Contains a markdown document. This markdown document class supports original markdown,...
Contains some basic statistical information about a Markdown document.
Represents an atom of editable text (i.e. typed character).
Definition: Atom.cs:11
IEditableText Source
Source
Definition: Atom.cs:33
override void IncrementStatistics(MarkdownStatistics Statistics)
Increments the property or properties in Statistics corresponding to the element.
InlineCodeCharacter(MarkdownDocument Document, InlineCode Source, char Character)
Represents a character in inline code.
MarkdownDocument Document
Markdown document.