forked from PeterWaher/IoTGateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWaher.Content.Markdown.xml
More file actions
6460 lines (6456 loc) · 342 KB
/
Waher.Content.Markdown.xml
File metadata and controls
6460 lines (6456 loc) · 342 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>Waher.Content.Markdown</name>
</assembly>
<members>
<member name="T:Waher.Content.Markdown.Functions.LoadMarkdown">
<summary>
LoadMarkdown(FileName)
</summary>
</member>
<member name="M:Waher.Content.Markdown.Functions.LoadMarkdown.#ctor(Waher.Script.Model.ScriptNode,System.Int32,System.Int32,Waher.Script.Expression)">
<summary>
LoadMarkdown(FileName)
</summary>
<param name="FileName">File name.</param>
<param name="Start">Start position in script expression.</param>
<param name="Length">Length of expression covered by node.</param>
<param name="Expression">Expression containing script.</param>
</member>
<member name="P:Waher.Content.Markdown.Functions.LoadMarkdown.FunctionName">
<summary>
Name of the function
</summary>
</member>
<member name="M:Waher.Content.Markdown.Functions.LoadMarkdown.EvaluateScalar(System.String,Waher.Script.Variables)">
<summary>
Evaluates the function on a scalar argument.
</summary>
<param name="Argument">Function argument.</param>
<param name="Variables">Variables collection.</param>
<returns>Function result.</returns>
</member>
<member name="T:Waher.Content.Markdown.Functions.MarkdownEncode">
<summary>
MarkdownEncode(s)
</summary>
</member>
<member name="M:Waher.Content.Markdown.Functions.MarkdownEncode.#ctor(Waher.Script.Model.ScriptNode,System.Int32,System.Int32,Waher.Script.Expression)">
<summary>
MarkdownEncode(x)
</summary>
<param name="Argument">Argument.</param>
<param name="Start">Start position in script expression.</param>
<param name="Length">Length of expression covered by node.</param>
<param name="Expression">Expression containing script.</param>
</member>
<member name="P:Waher.Content.Markdown.Functions.MarkdownEncode.FunctionName">
<summary>
Name of the function
</summary>
</member>
<member name="M:Waher.Content.Markdown.Functions.MarkdownEncode.EvaluateScalar(System.String,Waher.Script.Variables)">
<summary>
Evaluates the function on a scalar argument.
</summary>
<param name="Argument">Function argument.</param>
<param name="Variables">Variables collection.</param>
<returns>Function result.</returns>
</member>
<member name="M:Waher.Content.Markdown.Functions.MarkdownEncode.EvaluateScalar(Waher.Script.Abstraction.Elements.IElement,Waher.Script.Variables)">
<summary>
Evaluates the function on a scalar argument.
</summary>
<param name="Argument">Function argument.</param>
<param name="Variables">Variables collection.</param>
<returns>Function result.</returns>
</member>
<member name="M:Waher.Content.Markdown.Functions.MarkdownEncode.EscapeText(System.String)">
<summary>
Escapes text for inclusion in a Markdown document.
</summary>
<param name="PlainText">Text to include.</param>
<returns>Escaped text.</returns>
</member>
<member name="T:Waher.Content.Markdown.Functions.MarkdownToHtml">
<summary>
MarkdownToHtml(s)
</summary>
</member>
<member name="M:Waher.Content.Markdown.Functions.MarkdownToHtml.#ctor(Waher.Script.Model.ScriptNode,System.Int32,System.Int32,Waher.Script.Expression)">
<summary>
MarkdownToHtml(x)
</summary>
<param name="Argument">Argument.</param>
<param name="Start">Start position in script expression.</param>
<param name="Length">Length of expression covered by node.</param>
<param name="Expression">Expression containing script.</param>
</member>
<member name="P:Waher.Content.Markdown.Functions.MarkdownToHtml.FunctionName">
<summary>
Name of the function
</summary>
</member>
<member name="M:Waher.Content.Markdown.Functions.MarkdownToHtml.EvaluateScalar(System.String,Waher.Script.Variables)">
<summary>
Evaluates the function on a scalar argument.
</summary>
<param name="Argument">Function argument.</param>
<param name="Variables">Variables collection.</param>
<returns>Function result.</returns>
</member>
<member name="T:Waher.Content.Markdown.Functions.PreprocessMarkdown">
<summary>
PreprocessMarkdown(Markdown)
</summary>
</member>
<member name="M:Waher.Content.Markdown.Functions.PreprocessMarkdown.#ctor(Waher.Script.Model.ScriptNode,System.Int32,System.Int32,Waher.Script.Expression)">
<summary>
PreprocessMarkdown(Markdown)
</summary>
<param name="Markdown">Markdown.</param>
<param name="Start">Start position in script expression.</param>
<param name="Length">Length of expression covered by node.</param>
<param name="Expression">Expression containing script.</param>
</member>
<member name="P:Waher.Content.Markdown.Functions.PreprocessMarkdown.FunctionName">
<summary>
Name of the function
</summary>
</member>
<member name="M:Waher.Content.Markdown.Functions.PreprocessMarkdown.EvaluateScalar(System.String,Waher.Script.Variables)">
<summary>
Evaluates the function on a scalar argument.
</summary>
<param name="Argument">Function argument.</param>
<param name="Variables">Variables collection.</param>
<returns>Function result.</returns>
</member>
<member name="T:Waher.Content.Markdown.HtmlSettings">
<summary>
Contains settings that the HTML export uses to customize HTML output.
</summary>
</member>
<member name="M:Waher.Content.Markdown.HtmlSettings.#ctor">
<summary>
Contains settings that the HTML export uses to customize HTML output.
</summary>
</member>
<member name="P:Waher.Content.Markdown.HtmlSettings.HashtagClass">
<summary>
Class name used on hashtag mark elements.
</summary>
</member>
<member name="P:Waher.Content.Markdown.HtmlSettings.HashtagClickScript">
<summary>
Javascript to execute when hashtag mark element is clicked.
</summary>
</member>
<member name="P:Waher.Content.Markdown.HtmlSettings.XmlEntitiesOnly">
<summary>
If typographical extensions should conform to XML entities (true), or if HTML entities can be used as well (false).
</summary>
</member>
<member name="T:Waher.Content.Markdown.MarkdownCodec">
<summary>
Markdown encoder.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownCodec.#ctor">
<summary>
Markdown encoder/decoder.
</summary>
</member>
<member name="F:Waher.Content.Markdown.MarkdownCodec.ContentType">
<summary>
Markdown content type.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownCodec.ContentTypes">
<summary>
Supported content types.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownCodec.FileExtensions">
<summary>
Supported file extensions.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownCodec.Decodes(System.String,Waher.Runtime.Inventory.Grade@)">
<summary>
If the decoder decodes an object with a given content type.
</summary>
<param name="ContentType">Content type to decode.</param>
<param name="Grade">How well the decoder decodes the object.</param>
<returns>If the decoder can decode an object with the given type.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownCodec.Decode(System.String,System.Byte[],System.Text.Encoding,System.Collections.Generic.KeyValuePair{System.String,System.String}[],System.Uri)">
<summary>
Decodes an object.
</summary>
<param name="ContentType">Internet Content Type.</param>
<param name="Data">Encoded object.</param>
<param name="Encoding">Any encoding specified. Can be null if no encoding specified.</param>
<param name="Fields">Any content-type related fields and their corresponding values.</param>
<param name="BaseUri">Base URI, if any. If not available, value is null.</param>
<returns>Decoded object.</returns>
<exception cref="T:System.ArgumentException">If the object cannot be decoded.</exception>
</member>
<member name="M:Waher.Content.Markdown.MarkdownCodec.Encodes(System.Object,Waher.Runtime.Inventory.Grade@,System.String[])">
<summary>
If the encoder encodes a given object.
</summary>
<param name="Object">Object to encode.</param>
<param name="Grade">How well the encoder encodes the object.</param>
<param name="AcceptedContentTypes">Optional array of accepted content types. If array is empty, all content types are accepted.</param>
<returns>If the encoder can encode the given object.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownCodec.Encode(System.Object,System.Text.Encoding,System.String@,System.String[])">
<summary>
Encodes an object.
</summary>
<param name="Object">Object to encode.</param>
<param name="Encoding">Desired encoding of text. Can be null if no desired encoding is speified.</param>
<param name="ContentType">Content Type of encoding. Includes information about any text encodings used.</param>
<returns>Encoded object.</returns>
<param name="AcceptedContentTypes">Optional array of accepted content types. If array is empty, all content types are accepted.</param>
<exception cref="T:System.ArgumentException">If the object cannot be encoded.</exception>
</member>
<member name="M:Waher.Content.Markdown.MarkdownCodec.TryGetContentType(System.String,System.String@)">
<summary>
Tries to get the content type of an item, given its file extension.
</summary>
<param name="FileExtension">File extension.</param>
<param name="ContentType">Content type.</param>
<returns>If the extension was recognized.</returns>
</member>
<member name="T:Waher.Content.Markdown.MarkdownElementHandler">
<summary>
Delegate for markdown element callback methods.
</summary>
<param name="Element">Markdown element</param>
<param name="State">State object.</param>
<returns>If process should continue.</returns>
</member>
<member name="T:Waher.Content.Markdown.MarkdownDocument">
<summary>
Contains a markdown document. This markdown document class supports original markdown, as well as several markdown extensions.
See the markdown reference documentation provided with the library for more information.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.#ctor(System.String,System.Type[])">
<summary>
Contains a markdown document. This markdown document class supports original markdown, as well as several markdown extensions.
</summary>
<param name="MarkdownText">Markdown text.</param>
<param name="TransparentExceptionTypes">If an exception is thrown when processing script in markdown, and the exception is of
any of these types, the exception will be rethrown, instead of shown as an error in the generated output.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.#ctor(System.String,Waher.Content.Markdown.MarkdownSettings,System.Type[])">
<summary>
Contains a markdown document. This markdown document class supports original markdown, as well as several markdown extensions.
</summary>
<param name="MarkdownText">Markdown text.</param>
<param name="Settings">Parser settings.</param>
<param name="TransparentExceptionTypes">If an exception is thrown when processing script in markdown, and the exception is of
any of these types, the exception will be rethrown, instead of shown as an error in the generated output.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.#ctor(System.String,Waher.Content.Markdown.MarkdownSettings,System.String,System.String,System.String,System.Type[])">
<summary>
Contains a markdown document. This markdown document class supports original markdown, as well as several markdown extensions.
</summary>
<param name="MarkdownText">Markdown text.</param>
<param name="Settings">Parser settings.</param>
<param name="FileName">If the content is coming from a file, this parameter contains the name of that file.
Otherwise, the parameter is the empty string.</param>
<param name="ResourceName">Local resource name of file, if accessed from a web server.</param>
<param name="URL">Full URL of resource hosting the content, if accessed from a web server.</param>
<param name="TransparentExceptionTypes">If an exception is thrown when processing script in markdown, and the exception is of
any of these types, the exception will be rethrown, instead of shown as an error in the generated output.</param>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.MarkdownText">
<summary>
Markdown text. This text might differ slightly from the original text passed to the document.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.TransparentExceptionTypes">
<summary>
If an exception is thrown when processing script in markdown, and the exception is of
any of these types, the exception will be rethrown, instead of shown as an error in the generated output.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.Preprocess(System.String,Waher.Content.Markdown.MarkdownSettings,System.Type[])">
<summary>
Preprocesses markdown text.
</summary>
<param name="Markdown">Markdown text</param>
<param name="Settings">Markdown settings.</param>
<param name="TransparentExceptionTypes">If an exception is thrown when processing script in markdown, and the exception is of
any of these types, the exception will be rethrown, instead of shown as an error in the generated output.</param>
<returns>Preprocessed markdown.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.Preprocess(System.String,Waher.Content.Markdown.MarkdownSettings,System.String,System.Type[])">
<summary>
Preprocesses markdown text.
</summary>
<param name="Markdown">Markdown text</param>
<param name="Settings">Markdown settings.</param>
<param name="FileName">Filename of markdown.</param>
<param name="TransparentExceptionTypes">If an exception is thrown when processing script in markdown, and the exception is of
any of these types, the exception will be rethrown, instead of shown as an error in the generated output.</param>
<returns>Preprocessed markdown.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.Preprocess(System.String,Waher.Content.Markdown.MarkdownSettings,System.String,System.Boolean@,System.Type[])">
<summary>
Preprocesses markdown text.
</summary>
<param name="Markdown">Markdown text</param>
<param name="Settings">Markdown settings.</param>
<param name="FileName">Filename of markdown.</param>
<param name="IsDynamic">If the markdown contained preprocessed script.</param>
<param name="TransparentExceptionTypes">If an exception is thrown when processing script in markdown, and the exception is of
any of these types, the exception will be rethrown, instead of shown as an error in the generated output.</param>
<returns>Preprocessed markdown.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateHTML">
<summary>
Generates HTML from the markdown text.
</summary>
<returns>HTML</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateHTML(System.Text.StringBuilder)">
<summary>
Generates HTML from the markdown text.
</summary>
<param name="Output">HTML will be output here.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateHTML(System.Text.StringBuilder,System.Boolean)">
<summary>
Generates HTML from the markdown text.
</summary>
<param name="Output">HTML will be output here.</param>
<param name="Inclusion">If the HTML is to be included in another document (true), or if it is a standalone document (false).</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.CheckURL(System.String,System.String)">
<summary>
Checks the URL if it needs redirection to a proxy.
</summary>
<param name="Url">URL to check.</param>
<param name="URL">URL of the document. If null, or empty, relative URLs can be returned. If not null or empty,
all URLs returned will be absolute.</param>
<returns>URL to use in clients.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GeneratePlainText">
<summary>
Generates Plain Text from the markdown text.
</summary>
<returns>Plain Text</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GeneratePlainText(System.Text.StringBuilder)">
<summary>
Generates Plain Text from the markdown text.
</summary>
<param name="Output">Plain Text will be output here.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXAML">
<summary>
Generates WPF XAML from the markdown text.
</summary>
<returns>WPF XAML</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXAML(System.Xml.XmlWriterSettings)">
<summary>
Generates WPF XAML from the markdown text.
</summary>
<param name="XmlSettings">XML settings.</param>
<returns>WPF XAML</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXAML(System.Text.StringBuilder)">
<summary>
Generates WPF XAML from the markdown text.
</summary>
<param name="Output">WPF XAML will be output here.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXAML(System.Text.StringBuilder,System.Xml.XmlWriterSettings)">
<summary>
Generates WPF XAML from the markdown text.
</summary>
<param name="Output">WPF XAML will be output here.</param>
<param name="XmlSettings">XML settings.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXAML(System.Xml.XmlWriter)">
<summary>
Generates WPF XAML from the markdown text.
</summary>
<param name="Output">WPF XAML will be output here.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXAML(System.Xml.XmlWriter,System.Boolean)">
<summary>
Generates WPF XAML from the markdown text.
</summary>
<param name="Output">Widows XAML will be output here.</param>
<param name="Inclusion">If the XAML is to be included in another document (true), or if it is a standalone document (false).</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXamarinForms">
<summary>
Generates Xamarin.Forms XAML from the markdown text.
</summary>
<returns>Xamarin.Forms XAML</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXamarinForms(System.Xml.XmlWriterSettings)">
<summary>
Generates Xamarin.Forms XAML from the markdown text.
</summary>
<param name="XmlSettings">XML settings.</param>
<returns>Xamarin.Forms XAML</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXamarinForms(System.Text.StringBuilder)">
<summary>
Generates Xamarin.Forms XAML from the markdown text.
</summary>
<param name="Output">Xamarin.Forms XAML will be output here.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXamarinForms(System.Text.StringBuilder,System.Xml.XmlWriterSettings)">
<summary>
Generates Xamarin.Forms XAML from the markdown text.
</summary>
<param name="Output">Xamarin.Forms XAML will be output here.</param>
<param name="XmlSettings">XML settings.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXamarinForms(System.Xml.XmlWriter)">
<summary>
Generates Xamarin.Forms XAML from the markdown text.
</summary>
<param name="Output">Xamarin.Forms XAML will be output here.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GenerateXamarinForms(System.Xml.XmlWriter,System.Boolean)">
<summary>
Generates Xamarin.Forms XAML from the markdown text.
</summary>
<param name="Output">Widows XamarinForms will be output here.</param>
<param name="Inclusion">If the XamarinForms is to be included in another document (true), or if it is a standalone document (false).</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.ExportXml">
<summary>
Exports the parsed document to XML.
</summary>
<returns>XML String.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.ExportXml(System.Text.StringBuilder)">
<summary>
Exports the parsed document to XML.
</summary>
<param name="Xml">XML Output.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.ExportXml(System.Text.StringBuilder,System.Xml.XmlWriterSettings)">
<summary>
Exports the parsed document to XML.
</summary>
<param name="Xml">XML Output.</param>
<param name="Settings">XML Settings.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.ExportXml(System.Xml.XmlWriter)">
<summary>
Exports the parsed document to XML.
</summary>
<param name="Xml">XML Output.</param>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Headers">
<summary>
Headers in document.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.TryGetMetaData(System.String,System.Collections.Generic.KeyValuePair{System.String,System.Boolean}[]@)">
<summary>
Tries to get a meta-data value given its key.
</summary>
<param name="Key">Meta-data value.</param>
<param name="Value">(Value,linebreak)-pairs corresponding to the key, if found, null otherwise.</param>
<returns>If the meta-data key was found.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.AddMetaData(System.String,System.String)">
<summary>
Adds meta-data to the document.
</summary>
<param name="Key">Key name</param>
<param name="Value">Meta-data value.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GetMetaData(System.String)">
<summary>
Gets the meta-data values given a meta-data key. If meta-data is not found, an empty array is returned.
</summary>
<param name="Key">Meta-data key.</param>
<returns>Values for the given key, or an empty array if the key was not found.</returns>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.MetaDataKeys">
<summary>
Meta-data keys availale in document.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Author">
<summary>
Author(s) of document.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Copyright">
<summary>
Link to copyright statement.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Previous">
<summary>
Link to previous document, in a paginated set of documents.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Next">
<summary>
Link to next document, in a paginated set of documents.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.CSS">
<summary>
Link(s) to Cascading Style Sheet(s) that should be used for visual formatting of the generated HTML page.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.JavaScript">
<summary>
Link(s) to JavaScript files(s) that should be includedin the generated HTML page.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Script">
<summary>
Links to server-side script files that should be included before processing the page.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.InitializationScript">
<summary>
Links to server-side script files that should be executed before before processing the page.
Initialization script are only executed once. To execute init script again, a new version
(timestamp) of the file must be present.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Parameters">
<summary>
Name of a query parameter recognized by the page.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Date">
<summary>
(Publication) date of document.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Description">
<summary>
Description of document.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Image">
<summary>
Link to image for page.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Keywords">
<summary>
Keywords.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Subtitle">
<summary>
Subtitle of document.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Title">
<summary>
Title of document.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Web">
<summary>
Link to web page
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Refresh">
<summary>
Tells the browser to refresh the page after a given number of seconds.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.UserVariable">
<summary>
Name of the variable that will hold a reference to the IUser interface for the currently logged in user.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Login">
<summary>
Link to a login page. This page will be shown if the user variable does not contain a user.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Privileges">
<summary>
Requered user privileges to display page.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.TryGetFootnoteNumber(System.String,System.Int32@)">
<summary>
Tries to get the number of a footnote, given its key.
</summary>
<param name="Key">Footnote key.</param>
<param name="Number">Footnote number.</param>
<returns>If a footnote with the given key was found.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.TryGetFootnote(System.String,Waher.Content.Markdown.Model.BlockElements.Footnote@)">
<summary>
Tries to get a footnote, given its key.
</summary>
<param name="Key">Footnote key.</param>
<param name="Footnote">Footnote.</param>
<returns>If a footnote with the given key was found.</returns>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Footnotes">
<summary>
Gets the keys of the footnotes in the order that they are referenced in the document. Footnotes that are not actually
used in the document are omitted.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.EmojiSource">
<summary>
Source for emojis in the document.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.Encode(System.String)">
<summary>
Encodes all special characters in a string so that it can be included in a markdown document without affecting the markdown.
</summary>
<param name="s">String to encode.</param>
<returns>Encoded string.</returns>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.SyntaxHighlighting">
<summary>
If syntax highlighting is used in the document.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.FileName">
<summary>
Filename of Markdown document. Markdown inclusion will be made relative to this filename.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.ResourceName">
<summary>
Local resource name of Markdown document, if referenced through a web server. Master documents use this resource name to match
detail content with menu links.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.URL">
<summary>
Absolute URL of Markdown document, if referenced through a web server.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Master">
<summary>
Master document responsible for the current document.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Detail">
<summary>
Detail document of a master document.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Settings">
<summary>
Markdown settings.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.IncludesTableOfContents">
<summary>
If the document contains a Table of Contents.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.IsDynamic">
<summary>
If the contents of the document is dynamic (i.e. includes script), or not (i.e. is static).
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.ForEach(Waher.Content.Markdown.MarkdownElementHandler,System.Object)">
<summary>
Loops through all elements in the document.
</summary>
<param name="Callback">Method called for each one of the elements.</param>
<param name="State">State object passed on to the callback method.</param>
<returns>If the operation was completed.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.FindLinks">
<summary>
Finds all links in the document.
</summary>
<returns>Array of links found in the document.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.FindLinks(System.Boolean,System.Boolean,System.Boolean)">
<summary>
Finds all links in the document.
</summary>
<param name="IncludeAutomaticLinks">If automatic links are to be included. (Default=true)</param>
<param name="IncludeLinks">If normal links are to be included. (Default=true)</param>
<param name="IncludeMultimedia">If Multimedia links are to be included. (Default=true)</param>
<returns>Array of links found in the document.</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.FindHashTags">
<summary>
Finds hashtags in the document.
</summary>
<returns>Array of hashtags found in the document.</returns>
</member>
<member name="P:Waher.Content.Markdown.MarkdownDocument.Elements">
<summary>
Markdown elements making up the document.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.GetEnumerator">
<summary>
Gets an enumerator of root markdown elements in the document.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.Compare(Waher.Content.Markdown.MarkdownDocument,Waher.Content.Markdown.MarkdownDocument,System.Boolean)">
<summary>
Calculates the difference of two Markdown documents.
</summary>
<param name="Old">Old version of the document.</param>
<param name="New">New version of the document.</param>
<param name="KeepUnchanged">If unchanged parts of the document should be kept.</param>
<returns>Difference document</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.Compare(System.String,System.String,Waher.Content.Markdown.MarkdownSettings,System.Boolean,System.Type[])">
<summary>
Calculates the difference of two Markdown documents.
</summary>
<param name="Old">Old version of the document.</param>
<param name="New">New version of the document.</param>
<param name="Settings">Markdown settings.</param>
<param name="KeepUnchanged">If unchanged parts of the document should be kept.</param>
<param name="TransparentExceptionTypes">If an exception is thrown when processing script in markdown, and the exception is of
any of these types, the exception will be rethrown, instead of shown as an error in the generated output.</param>
<returns>Difference document</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.Compare(Waher.Content.Markdown.MarkdownDocument,System.Boolean)">
<summary>
Calculates the difference of the current Markdown document, and a previous version of the Markdown document.
</summary>
<param name="Previous">Previous version</param>
<param name="KeepUnchanged">If unchanged parts of the document should be kept.</param>
<returns>Difference document</returns>
</member>
<member name="M:Waher.Content.Markdown.MarkdownDocument.QueueAsyncTask(System.Func{System.Threading.Tasks.Task})">
<summary>
Queues an asynchronous task to be executed.
</summary>
<param name="Action">Action</param>
</member>
<member name="T:Waher.Content.Markdown.MarkdownSettings">
<summary>
Contains settings that the Markdown parser uses to customize its behavior.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownSettings.#ctor">
<summary>
Contains settings that the Markdown parser uses to customize its behavior.
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownSettings.#ctor(Waher.Content.Emoji.IEmojiSource)">
<summary>
Contains settings that the Markdown parser uses to customize its behavior.
</summary>
<param name="EmojiSource">Optional Emoji source. Emojis and smileys are only available if an emoji source is provided.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownSettings.#ctor(Waher.Content.Emoji.IEmojiSource,System.Boolean)">
<summary>
Contains settings that the Markdown parser uses to customize its behavior.
</summary>
<param name="EmojiSource">Optional Emoji source. Emojis and smileys are only available if an emoji source is provided.</param>
<param name="ParseMetaData">If meta-data should be parsed or not. By default, this value is true, if no emoji source is provided,
and false, if an emoji source is not provided.</param>
</member>
<member name="M:Waher.Content.Markdown.MarkdownSettings.#ctor(Waher.Content.Emoji.IEmojiSource,System.Boolean,Waher.Script.Variables)">
<summary>
Contains settings that the Markdown parser uses to customize its behavior.
</summary>
<param name="EmojiSource">Optional Emoji source. Emojis and smileys are only available if an emoji source is provided.</param>
<param name="ParseMetaData">If meta-data should be parsed or not. By default, this value is true, if no emoji source is provided,
and false, if an emoji source is not provided.</param>
<param name="Variables">Collection of variables. Providing such a collection enables script execution inside markdown
documents.</param>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.EmojiSource">
<summary>
Optional Emoji source. Emojis and smileys are only available if an emoji source is provided.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.ParseMetaData">
<summary>
If meta-data should be parsed or not.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.Variables">
<summary>
Collection of variables. Providing such a collection enables script execution inside markdown documents.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.HttpxProxy">
<summary>
Modifies URLS using the HTTPX URI scheme, so that they point to an HTTPX proxy. The string %URL% is replaced with
the original URL string.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.LocalHttpxResourcePath">
<summary>
Local HTTPX Resource Path. HTTPX URLs starting with this string (if defined) will be considered local web resources.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.AudioAutoplay">
<summary>
If audio is to be played automatically. Default=true.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.AudioControls">
<summary>
If audio should be played with controls or not. Default=false.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.VideoAutoplay">
<summary>
If video is to be played automatically. Default=false.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.VideoControls">
<summary>
If video should be played with controls or not. Default=true.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.EmbedEmojis">
<summary>
If emojis should be embedded using the data URI scheme.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.RootFolder">
<summary>
File system root folder. If file references are absolute, and this property is provided, they are measured relative to this folder.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.AllowScriptTag">
<summary>
If the HTML SCRIPT tag should be allowed or not.s
</summary>
</member>
<member name="M:Waher.Content.Markdown.MarkdownSettings.GetFileName(System.String,System.String)">
<summary>
Evaluates a file name from a file reference.
</summary>
<param name="DocumentFileName">Filename of original markdown document.</param>
<param name="FileNameReference">Filename reference.</param>
<returns>Physical filename.</returns>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.XamlSettings">
<summary>
XAML Settings used for XAML rendering.
</summary>
</member>
<member name="P:Waher.Content.Markdown.MarkdownSettings.HtmlSettings">
<summary>
HTML Settings used for HTML rendering.
</summary>
</member>
<member name="T:Waher.Content.Markdown.Model.Atoms.Atom">
<summary>
Represents an atom of editable text (i.e. typed character).
</summary>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.Atom.#ctor(Waher.Content.Markdown.MarkdownDocument,Waher.Content.Markdown.Model.IEditableText,System.Char)">
<summary>
Represents an atom of editable text (i.e. typed character).
</summary>
</member>
<member name="P:Waher.Content.Markdown.Model.Atoms.Atom.Charater">
<summary>
Character
</summary>
</member>
<member name="P:Waher.Content.Markdown.Model.Atoms.Atom.Source">
<summary>
Source
</summary>
</member>
<member name="P:Waher.Content.Markdown.Model.Atoms.Atom.InlineSpanElement">
<summary>
If the element is an inline span element.
</summary>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.Atom.Export(System.Xml.XmlWriter)">
<summary>
Exports the element to XML.
</summary>
<param name="Output">XML Output.</param>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.Atom.GenerateHTML(System.Text.StringBuilder)">
<summary>
Generates HTML for the markdown element.
</summary>
<param name="Output">HTML will be output here.</param>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.Atom.GenerateMarkdown(System.Text.StringBuilder)">
<summary>
Generates Markdown for the markdown element.
</summary>
<param name="Output">Markdown will be output here.</param>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.Atom.GeneratePlainText(System.Text.StringBuilder)">
<summary>
Generates plain text for the markdown element.
</summary>
<param name="Output">Plain text will be output here.</param>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.Atom.GenerateXAML(System.Xml.XmlWriter,Waher.Content.Markdown.Model.TextAlignment)">
<summary>
Generates WPF XAML for the markdown element.
</summary>
<param name="Output">XAML will be output here.</param>
<param name="TextAlignment">Alignment of text in element.</param>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.Atom.GenerateXamarinForms(System.Xml.XmlWriter,Waher.Content.Markdown.Model.TextAlignment)">
<summary>
Generates Xamarin.Forms XAML for the markdown element.
</summary>
<param name="Output">XAML will be output here.</param>
<param name="TextAlignment">Alignment of text in element.</param>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.Atom.Equals(System.Object)">
<summary>
Determines whether the specified object is equal to the current object.
</summary>
<param name="obj">The object to compare with the current object.</param>
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.Atom.GetHashCode">
<summary>
Serves as the default hash function.
</summary>
<returns>A hash code for the current object.</returns>
</member>
<member name="T:Waher.Content.Markdown.Model.Atoms.InlineCodeCharacter">
<summary>
Represents a character in inline code.
</summary>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.InlineCodeCharacter.#ctor(Waher.Content.Markdown.MarkdownDocument,Waher.Content.Markdown.Model.SpanElements.InlineCode,System.Char)">
<summary>
Represents a character in inline code.
</summary>
</member>
<member name="T:Waher.Content.Markdown.Model.Atoms.InlineHtmlCharacter">
<summary>
Represents a character in inline HTML.
</summary>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.InlineHtmlCharacter.#ctor(Waher.Content.Markdown.MarkdownDocument,Waher.Content.Markdown.Model.SpanElements.InlineHTML,System.Char)">
<summary>
Represents a character in inline HTML.
</summary>
</member>
<member name="T:Waher.Content.Markdown.Model.Atoms.InlineTextCharacter">
<summary>
Represents a character in inline text.
</summary>
</member>
<member name="M:Waher.Content.Markdown.Model.Atoms.InlineTextCharacter.#ctor(Waher.Content.Markdown.MarkdownDocument,Waher.Content.Markdown.Model.SpanElements.InlineText,System.Char)">
<summary>
Represents a character in inline text.
</summary>
</member>
<member name="T:Waher.Content.Markdown.Model.BlockElements.BlockElement">
<summary>
Abstract base class for block elements.
</summary>
</member>
<member name="M:Waher.Content.Markdown.Model.BlockElements.BlockElement.#ctor(Waher.Content.Markdown.MarkdownDocument)">
<summary>
Abstract base class for block elements.
</summary>
<param name="Document">Markdown document.</param>
</member>
<member name="P:Waher.Content.Markdown.Model.BlockElements.BlockElement.IsBlockElement">
<summary>
If the element is a block element.
</summary>
</member>
<member name="T:Waher.Content.Markdown.Model.BlockElements.BlockElementChildren">
<summary>
Abstract base class for block elements with children.
</summary>
</member>
<member name="M:Waher.Content.Markdown.Model.BlockElements.BlockElementChildren.#ctor(Waher.Content.Markdown.MarkdownDocument,System.Collections.Generic.IEnumerable{Waher.Content.Markdown.Model.MarkdownElement})">
<summary>
Abstract base class for block elements with children.
</summary>
<param name="Document">Markdown document.</param>
<param name="Children">Child elements.</param>
</member>
<member name="M:Waher.Content.Markdown.Model.BlockElements.BlockElementChildren.#ctor(Waher.Content.Markdown.MarkdownDocument,Waher.Content.Markdown.Model.MarkdownElement[])">
<summary>
Abstract base class for block elements with children.
</summary>
<param name="Document">Markdown document.</param>
<param name="Children">Child elements.</param>
</member>