Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MarkdownStatistics.cs
3
5{
9 public class MarkdownStatistics
10 {
14 public int NrElements { get; set; }
15
19 public int NrAbbreviations { get; set; }
20
24 public int NrMailHyperLinks { get; set; }
25
29 public int NrUrlHyperLinks { get; set; }
30
34 public int NrHyperLinks { get; set; }
35
39 internal ChunkedList<string> IntMailHyperlinks { get; set; }
40
44 internal ChunkedList<string> IntUrlHyperlinks { get; set; }
45
49 public string[] MailHyperlinks { get; set; }
50
54 public string[] UrlHyperlinks { get; set; }
55
59 public int NrDelete { get; set; }
60
64 public int NrDetailsReference { get; set; }
65
69 public int NrEmojiReference { get; set; }
70
74 public int NrEmphasize { get; set; }
75
79 public int NrFootnoteReference { get; set; }
80
84 public int NrHashTags { get; set; }
85
89 public int NrHtmlEntities { get; set; }
90
94 public int NrHtmlUnicodeEntities { get; set; }
95
99 public int NrHtmlEntitiesTotal { get; set; }
100
104 public int NrInlineCode { get; set; }
105
109 public int NrInlineHtml { get; set; }
110
114 public int NrInlineScript { get; set; }
115
119 public int NrInlineText { get; set; }
120
124 public int NrInsert { get; set; }
125
129 public int NrLineBreak { get; set; }
130
134 public int NrMetaReference { get; set; }
135
139 public int NrMultimedia { get; set; }
140
144 public int NrMultiformatMultimedia { get; set; }
145
149 internal Dictionary<string, ChunkedList<string>> IntMultimediaPerExtension { get; set; }
150
154 internal Dictionary<string, ChunkedList<string>> IntMultimediaPerContentType { get; set; }
155
159 internal Dictionary<string, ChunkedList<string>> IntMultimediaPerContentCategory { get; set; }
160
164 public Dictionary<string, string[]> MultimediaPerExtension { get; set; }
165
169 public Dictionary<string, string[]> MultimediaPerContentType { get; set; }
170
174 public Dictionary<string, string[]> MultimediaPerContentCategory { get; set; }
175
179 public Dictionary<string, int> NrMultimediaPerExtension { get; set; }
180
184 public Dictionary<string, int> NrMultimediaPerContentType { get; set; }
185
189 public Dictionary<string, int> NrMultimediaPerContentCategory { get; set; }
190
194 public int NrStrikeThrough { get; set; }
195
199 public int NrStrong { get; set; }
200
204 public int NrSubscript { get; set; }
205
209 public int NrSuperScript { get; set; }
210
214 public int NrUnderline { get; set; }
215
219 public int NrBlockQuotes { get; set; }
220
224 public int NrBulletLists { get; set; }
225
229 public int NrCodeBlocks { get; set; }
230
234 public int NrComments { get; set; }
235
239 public int NrDefinitionDescriptions { get; set; }
240
244 public int NrDefinitionLists { get; set; }
245
249 public int NrDefinitionTerms { get; set; }
250
254 public int NrFootnotes { get; set; }
255
259 public int NrHeaders { get; set; }
260
264 public int NrHorizontalRules { get; set; }
265
269 public int NrHtmlBlocks { get; set; }
270
274 public int NrInvisibleBreaks { get; set; }
275
279 public int NrNumberedItems { get; set; }
280
284 public int NrNumberedLists { get; set; }
285
289 public int NrParagraph { get; set; }
290
294 public int NrSections { get; set; }
295
299 public int NrSectionSeparators { get; set; }
300
304 public int NrTables { get; set; }
305
309 public int NrTaskItems { get; set; }
310
314 public int NrTaskLists { get; set; }
315
319 public int NrUnnumberedItems { get; set; }
320
324 public int NrListItems { get; set; }
325
329 public int NrLists { get; set; }
330
334 public int NrNestedBlocks { get; set; }
335
339 public int NrCenterAlignedBlocks { get; set; }
340
344 public int NrLeftAlignedBlocks { get; set; }
345
349 public int NrRightAlignedBlocks { get; set; }
350
354 public int NrMarginAlignedBlocks { get; set; }
355 }
356}
Contains some basic statistical information about a Markdown document.
int NrAbbreviations
Number of abbreviations.
Dictionary< string, string[]> MultimediaPerContentCategory
Multimedia links, per Content Category (top part of Content-Type)
int NrUnnumberedItems
Number of unnumbered items.
int NrDefinitionDescriptions
Number of definition descriptions.
int NrNumberedLists
Number of numbered lists.
int NrCenterAlignedBlocks
Number of center-aligned blocks.
Dictionary< string, int > NrMultimediaPerContentType
Number of multimedia, per Content-Type
int NrDefinitionLists
Number of definition lists.
int NrDelete
Number of deletes (span+block).
int NrInvisibleBreaks
Number of invisible breaks.
int NrMultimedia
Number of multimedia (total).
int NrNumberedItems
Number of numbered items.
int NrHtmlUnicodeEntities
Number of unicode HTML entities.
int NrDefinitionTerms
Number of definition terms.
int NrRightAlignedBlocks
Number of right-aligned blocks.
int NrNestedBlocks
Number of nested blocks.
int NrUrlHyperLinks
Number of URL hyperlinks.
Dictionary< string, string[]> MultimediaPerExtension
Multimedia links, per file extension.
int NrInsert
Number of insert (span+block).
int NrHorizontalRules
Number of horizontal rules.
int NrHtmlEntitiesTotal
Number of HTML entities (total).
int NrDetailsReference
Number of details references.
int NrHtmlEntities
Number of HTML entities.
int NrStrikeThrough
Number of strike throughs.
int NrMultiformatMultimedia
Number of multi-formatted multimedia.
int NrMetaReference
Number of meta references.
Dictionary< string, string[]> MultimediaPerContentType
Multimedia links, per Content-Type
int NrEmojiReference
Number of emoji references.
int NrMailHyperLinks
Number of mail hyperlinks.
int NrSectionSeparators
Number of section separators.
int NrLeftAlignedBlocks
Number of left-aligned blocks.
int NrInlineScript
Number of script inlines.
Dictionary< string, int > NrMultimediaPerExtension
Number of multimedia, per file extension.
int NrMarginAlignedBlocks
Number of margin-aligned blocks.
Dictionary< string, int > NrMultimediaPerContentCategory
Number of multimedia, per Content Category (top part of Content-Type)
int NrElements
Number of elements in Markdown document (total).
int NrFootnoteReference
Number of footnote references
int NrHyperLinks
Number of hyperlinks (total).
int NrListItems
Number of list items (total).
A chunked list is a linked list of chunks of objects of type T .
Definition: ChunkedList.cs:54