Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MarkdownStatistics.cs
1using System.Collections.Generic;
2
4{
8 public class MarkdownStatistics
9 {
13 public int NrElements { get; set; }
14
18 public int NrAbbreviations { get; set; }
19
23 public int NrMailHyperLinks { get; set; }
24
28 public int NrUrlHyperLinks { get; set; }
29
33 public int NrHyperLinks { get; set; }
34
38 internal List<string> IntMailHyperlinks { get; set; }
39
43 internal List<string> IntUrlHyperlinks { get; set; }
44
48 public string[] MailHyperlinks { get; set; }
49
53 public string[] UrlHyperlinks { get; set; }
54
58 public int NrDelete { get; set; }
59
63 public int NrDetailsReference { get; set; }
64
68 public int NrEmojiReference { get; set; }
69
73 public int NrEmphasize { get; set; }
74
78 public int NrFootnoteReference { get; set; }
79
83 public int NrHashTags { get; set; }
84
88 public int NrHtmlEntities { get; set; }
89
93 public int NrHtmlUnicodeEntities { get; set; }
94
98 public int NrHtmlEntitiesTotal { get; set; }
99
103 public int NrInlineCode { get; set; }
104
108 public int NrInlineHtml { get; set; }
109
113 public int NrInlineScript { get; set; }
114
118 public int NrInlineText { get; set; }
119
123 public int NrInsert { get; set; }
124
128 public int NrLineBreak { get; set; }
129
133 public int NrMetaReference { get; set; }
134
138 public int NrMultimedia { get; set; }
139
143 public int NrMultiformatMultimedia { get; set; }
144
148 internal Dictionary<string, List<string>> IntMultimediaPerExtension { get; set; }
149
153 internal Dictionary<string, List<string>> IntMultimediaPerContentType { get; set; }
154
158 internal Dictionary<string, List<string>> IntMultimediaPerContentCategory { get; set; }
159
163 public Dictionary<string, string[]> MultimediaPerExtension { get; set; }
164
168 public Dictionary<string, string[]> MultimediaPerContentType { get; set; }
169
173 public Dictionary<string, string[]> MultimediaPerContentCategory { get; set; }
174
178 public Dictionary<string, int> NrMultimediaPerExtension { get; set; }
179
183 public Dictionary<string, int> NrMultimediaPerContentType { get; set; }
184
188 public Dictionary<string, int> NrMultimediaPerContentCategory { get; set; }
189
193 public int NrStrikeThrough { get; set; }
194
198 public int NrStrong { get; set; }
199
203 public int NrSubscript { get; set; }
204
208 public int NrSuperScript { get; set; }
209
213 public int NrUnderline { get; set; }
214
218 public int NrBlockQuotes { get; set; }
219
223 public int NrBulletLists { get; set; }
224
228 public int NrCodeBlocks { get; set; }
229
233 public int NrComments { get; set; }
234
238 public int NrDefinitionDescriptions { get; set; }
239
243 public int NrDefinitionLists { get; set; }
244
248 public int NrDefinitionTerms { get; set; }
249
253 public int NrFootnotes { get; set; }
254
258 public int NrHeaders { get; set; }
259
263 public int NrHorizontalRules { get; set; }
264
268 public int NrHtmlBlocks { get; set; }
269
273 public int NrInvisibleBreaks { get; set; }
274
278 public int NrNumberedItems { get; set; }
279
283 public int NrNumberedLists { get; set; }
284
288 public int NrParagraph { get; set; }
289
293 public int NrSections { get; set; }
294
298 public int NrSectionSeparators { get; set; }
299
303 public int NrTables { get; set; }
304
308 public int NrTaskItems { get; set; }
309
313 public int NrTaskLists { get; set; }
314
318 public int NrUnnumberedItems { get; set; }
319
323 public int NrListItems { get; set; }
324
328 public int NrLists { get; set; }
329
333 public int NrNestedBlocks { get; set; }
334
338 public int NrCenterAlignedBlocks { get; set; }
339
343 public int NrLeftAlignedBlocks { get; set; }
344
348 public int NrRightAlignedBlocks { get; set; }
349
353 public int NrMarginAlignedBlocks { get; set; }
354 }
355}
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).