-
-
Notifications
You must be signed in to change notification settings - Fork 318
/
samples.json
1477 lines (1477 loc) · 36 KB
/
samples.json
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
[
{
"javaClassName": "io.noties.markwon.app.samples.CopyCodeBlockSample",
"id": "20210315112847",
"title": "Copy code block",
"description": "Copy contents of fenced code blocks",
"artifacts": [
"CORE"
],
"tags": [
"block",
"rendering",
"span",
"spanFactory"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.parser.RedditSuperscriptSample",
"id": "20210224091506",
"title": "Reddit superscript",
"description": "",
"artifacts": [
"HTML"
],
"tags": [
"html",
"reddit"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.ImageSizeResolverSample",
"id": "20210201165512",
"title": "ImageSizeResolver",
"description": "Custom `ImageSizeResolver` that treats dimension values as density-based (like `dp`, `dip` in resources)",
"artifacts": [
"CORE"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.InspectHtmlTextSample",
"id": "20210201140501",
"title": "Inspect text",
"description": "Inspect text content of a `HTML` node",
"artifacts": [
"HTML"
],
"tags": [
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.HugeImageSample",
"id": "20210118165230",
"title": "Huge image downscaling",
"description": "Downscale displayed images with `BitmapOptions` 2 step rendering (measure, downscale), use `DefaultDownScalingMediaDecoder`",
"artifacts": [
"IMAGE"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.HtmlCssStyleParserSample",
"id": "20210118155530",
"title": "CSS attributes in HTML",
"description": "Parse CSS attributes of HTML tags with `CssInlineStyleParser`",
"artifacts": [
"HTML"
],
"tags": [
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.basics.OneLineNoMarkdownSample",
"id": "20210118154116",
"title": "One line text",
"description": "Single line text without markdown markup",
"artifacts": [
"CORE"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.tasklist.TaskListMutateNestedSample",
"id": "20201228120444",
"title": "Task list mutate nested",
"description": "Task list mutation with nested items",
"artifacts": [
"EXT_TASKLIST"
],
"tags": [
"plugin"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.ClickImageSample",
"id": "20201221130230",
"title": "Click images",
"description": "Make _all_ images clickable (to open in a gallery, etc)",
"artifacts": [
"IMAGE"
],
"tags": [
"rendering",
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.ChangeBulletSpanSample",
"id": "20201208150530",
"title": "Change bullet span",
"description": "Use a different span implementation to render bullet lists",
"artifacts": [
"CORE"
],
"tags": [
"rendering",
"span",
"spanFactory"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.HeadingColorSample",
"id": "20201203224611",
"title": "Color of heading",
"description": "",
"artifacts": [
"CORE"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.OrderedListNumbersSample",
"id": "20201203221806",
"title": "Ordered list numbers",
"description": "",
"artifacts": [
"CORE"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.ExcludeFromParsingSample",
"id": "20201111221945",
"title": "Exclude part of input from parsing",
"description": "Exclude part of input from parsing by splitting input with delimiters",
"artifacts": [
"CORE"
],
"tags": [
"parsing"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.parser.CustomHeadingParserSample",
"id": "20201111221207",
"title": "Custom heading parser",
"description": "Custom heading block parser. Actual parser is not implemented",
"artifacts": [
"CORE"
],
"tags": [
"parsing",
"heading"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.editor.WYSIWYGEditorSample",
"id": "20200908133515",
"title": "WYSIWG editor",
"description": "A possible direction to implement what-you-see-is-what-you-get editor",
"artifacts": [
"EDITOR"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.tasklist.ListTaskListSample",
"id": "20200902174132",
"title": "Task list items with other lists",
"description": "Mix of task list items with other lists (bullet and ordered)",
"artifacts": [
"EXT_TASKLIST"
],
"tags": [
"lists"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.DeeplinksSample",
"id": "20200826122247",
"title": "Deeplinks",
"description": "Handling of deeplinks (app handles https scheme to deep link into content)",
"artifacts": [
"CORE"
],
"tags": [
"links"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.CoilImageSample",
"id": "20200826101209",
"title": "Coil image",
"description": "",
"artifacts": [
"IMAGE_COIL"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.JustifyModeSample",
"id": "20200826084338",
"title": "Justify text",
"description": "Justify text with `justificationMode` argument on Oreo (\u003e\u003d 26)",
"artifacts": [
"CORE"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.GlideGifImageSample",
"id": "20200820071942",
"title": "Glide GIF",
"description": "",
"artifacts": [
"IMAGE_GLIDE"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.inlineparsing.InlineParsingSquareBracketsSample",
"id": "20200819071751",
"title": "Inline Parsing of square brackets",
"description": "Disable OpenBracketInlineParser in order to parse own markdown syntax based on `[` character(s). This would disable native markdown [links](#) but not images ![image-alt](#)",
"artifacts": [
"INLINE_PARSER"
],
"tags": [
"parsing"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.ThematicBreakBottomMarginSample",
"id": "20200813154415",
"title": "Thematic break bottom margin",
"description": "Do not add a new line after thematic break (with the `BlockHandler`)",
"artifacts": [
"CORE"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.RedditSpoilerSample",
"id": "20200813145316",
"title": "Reddit spoiler",
"description": "An attempt to implement Reddit spoiler syntax `\u003e! !\u003c`",
"artifacts": [
"CORE"
],
"tags": [
"parsing"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.CoilRecyclerViewSample",
"id": "20200803132053",
"title": "Coil inside RecyclerView",
"description": "Display images via Coil plugin in `RecyclerView`",
"artifacts": [
"IMAGE_COIL",
"RECYCLER"
],
"tags": [
"recyclerView",
"rendering",
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.NativeAndHtmlImageSample",
"id": "20200803115847",
"title": "Native and HTML image",
"description": "Define images in both native markdown and HTML. Native markdown images take 100% of available width",
"artifacts": [
"HTML",
"IMAGE"
],
"tags": [
"rendering",
"image",
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.BlockHandlerSample",
"id": "20200729090524",
"title": "Block handler",
"description": "Custom block delimiters that control new lines after block nodes",
"artifacts": [
"CORE"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.CacheMarkwonSample",
"id": "20200707102458",
"title": "Cache Markwon instance",
"description": "A static cache for `Markwon` instance to be associated with a `Context`",
"artifacts": [
"CORE"
],
"tags": [
"cache"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.tasklist.TaskListMutateSample",
"id": "20200702140901",
"title": "GFM task list mutate",
"description": "",
"artifacts": [
"EXT_TASKLIST"
],
"tags": [
"plugin"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.tasklist.TaskListCustomDrawableSample",
"id": "20200702140749",
"title": "GFM task list custom drawable",
"description": "",
"artifacts": [
"EXT_TASKLIST"
],
"tags": [
"plugin"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.tasklist.TaskListCustomColorsSample",
"id": "20200702140536",
"title": "GFM task list custom colors",
"description": "Custom colors for task list extension",
"artifacts": [
"EXT_TASKLIST"
],
"tags": [
"parsing"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.tasklist.TaskListSample",
"id": "20200702140352",
"title": "GFM task list",
"description": "Github Flavored Markdown (GFM) task list extension",
"artifacts": [
"EXT_TASKLIST"
],
"tags": [
"plugin"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.table.TableLatexSample",
"id": "20200702140041",
"title": "LaTeX inside table",
"description": "Usage of LaTeX formulas inside markdown tables",
"artifacts": [
"EXT_LATEX",
"EXT_TABLES",
"IMAGE"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.table.TableWithImagesSample",
"id": "20200702135932",
"title": "Images inside table",
"description": "Usage of images inside markdown tables",
"artifacts": [
"EXT_TABLES",
"IMAGE"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.table.TableLinkifySample",
"id": "20200702135739",
"title": "Linkify table",
"description": "Automatically linkify markdown content including content inside tables, handle clicks inside tables",
"artifacts": [
"EXT_TABLES",
"LINKIFY"
],
"tags": [
"links"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.table.TableCustomizeSample",
"id": "20200702135621",
"title": "Customize table theme",
"description": "",
"artifacts": [
"EXT_TABLES"
],
"tags": [
"theme"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.RecyclerSample",
"id": "20200702101750",
"title": "RecyclerView",
"description": "Usage with `RecyclerView`",
"artifacts": [
"RECYCLER",
"RECYCLER_TABLE"
],
"tags": [
"recyclerView"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.LinkRemoveUnderlineSample",
"id": "20200702101224",
"title": "Remove link underline",
"description": "",
"artifacts": [
"CORE"
],
"tags": [
"links",
"rendering",
"span"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.PrecomputedFutureSample",
"id": "20200702092446",
"title": "PrecomputedFutureTextSetterCompat",
"description": "Usage of `PrecomputedFutureTextSetterCompat` inside a `RecyclerView` with appcompat",
"artifacts": [
"RECYCLER"
],
"tags": [
"recyclerView",
"precomputedText"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.PrecomputedSample",
"id": "20200702091654",
"title": "PrecomputedTextSetterCompat",
"description": "`TextSetter` to use `PrecomputedTextSetterCompat`",
"artifacts": [
"CORE"
],
"tags": [
"precomputedText"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.notification.RemoteViewsSample",
"id": "20200702090140",
"title": "RemoteViews in notification",
"description": "Display markdown with platform (system) spans in notification via `RemoteViews`",
"artifacts": [
"CORE"
],
"tags": [
"hack"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.notification.NotificationSample",
"id": "20200701130729",
"title": "Markdown in Notification",
"description": "Proof of concept of using `Markwon` with `android.app.Notification`",
"artifacts": [
"CORE"
],
"tags": [
"hack"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.latex.LatexErrorSample",
"id": "20200701122624",
"title": "LaTeX error handling",
"description": "Log error when parsing LaTeX and display error drawable",
"artifacts": [
"EXT_LATEX"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.latex.LatexThemeSample",
"id": "20200701121528",
"title": "LaTeX theme",
"description": "Sample of theme customization for LaTeX",
"artifacts": [
"EXT_LATEX",
"INLINE_PARSER"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.latex.LatexDefaultTextColorSample",
"id": "20200701120848",
"title": "LaTeX default text color",
"description": "LaTeX will use text color of `TextView` by default",
"artifacts": [
"EXT_LATEX"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.latex.LatexDarkSample",
"id": "20200701094225",
"title": "LaTeX dark",
"description": "LaTeX automatically uses `TextView` text color if not configured explicitly",
"artifacts": [
"EXT_LATEX"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.latex.LatexDifferentTextSizesSample",
"id": "20200701093504",
"title": "LaTeX inline/block different text size",
"description": "",
"artifacts": [
"EXT_LATEX",
"INLINE_PARSER"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.latex.LatexOmegaSample",
"id": "20200701090618",
"title": "LaTeX omega symbol",
"description": "Bug rendering omega symbol in LaTeX",
"artifacts": [
"EXT_LATEX",
"INLINE_PARSER"
],
"tags": [
"rendering",
"knownBug"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.latex.LatexLegacySample",
"id": "20200701090335",
"title": "LaTeX blocks in legacy mode",
"description": "Sample using _legacy_ LaTeX block parsing (pre `4.3.0` Markwon version)",
"artifacts": [
"EXT_LATEX"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.latex.LatexInlineSample",
"id": "20200701085820",
"title": "LaTeX inline",
"description": "Display LaTeX inline",
"artifacts": [
"EXT_LATEX",
"INLINE_PARSER"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.latex.LatexBlockSample",
"id": "20200630200257",
"title": "LaTex block",
"description": "Render LaTeX block",
"artifacts": [
"EXT_LATEX"
],
"tags": [
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.inlineparsing.InlineParsingTooltipSample",
"id": "20200630195409",
"title": "Tooltip with inline parser",
"description": "",
"artifacts": [
"INLINE_PARSER"
],
"tags": [
"parsing",
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.SimpleExtensionSample",
"id": "20200630194335",
"title": "Delimiter processor simple-ext",
"description": "Custom delimiter processor implemented with a `SimpleExtPlugin`",
"artifacts": [
"SIMPLE_EXT"
],
"tags": [
"parsing"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.DelimiterProcessorSample",
"id": "20200630194017",
"title": "Custom delimiter processor",
"description": "Custom parsing delimiter processor with `?` character",
"artifacts": [
"CORE"
],
"tags": [
"parsing"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.HtmlDisableSanitizeSample",
"id": "20200630171424",
"title": "Disable HTML",
"description": "Disable HTML via replacing special `\u003c` and `\u003e` symbols",
"artifacts": [
"CORE"
],
"tags": [
"parsing",
"plugin",
"rendering",
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.inlineparsing.InlineParsingNoHtmlSample",
"id": "20200630171239",
"title": "Inline parsing exclude HTML",
"description": "",
"artifacts": [
"INLINE_PARSER"
],
"tags": [
"parsing",
"block",
"inline"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.inlineparsing.InlineParsingNoDefaultsSample",
"id": "20200630170823",
"title": "Inline parsing no defaults",
"description": "Parsing only inline code and disable all the rest",
"artifacts": [
"INLINE_PARSER"
],
"tags": [
"parsing",
"inline"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.inlineparsing.InlineParsingWithDefaultsSample",
"id": "20200630170723",
"title": "Inline parsing with defaults",
"description": "Parsing with all defaults except links",
"artifacts": [
"INLINE_PARSER"
],
"tags": [
"parsing",
"inline"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.inlineparsing.InlineParsingDisableCodeSample",
"id": "20200630170607",
"title": "Disable code inline parsing",
"description": "",
"artifacts": [
"INLINE_PARSER"
],
"tags": [
"parsing",
"inline"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.inlineparsing.InlineParsingLinksOnlySample",
"id": "20200630170412",
"title": "Links only inline parsing",
"description": "",
"artifacts": [
"INLINE_PARSER"
],
"tags": [
"parsing",
"inline"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.GlidePlaceholderImageSample",
"id": "20200630170241",
"title": "Glide image with placeholder",
"description": "",
"artifacts": [
"IMAGE_GLIDE"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.GlideImageSample",
"id": "20200630170112",
"title": "Glide image",
"description": "",
"artifacts": [
"IMAGE_GLIDE"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.ErrorImageSample",
"id": "20200630165828",
"title": "Image error handler",
"description": "",
"artifacts": [
"IMAGE"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.PlaceholderImageSample",
"id": "20200630165504",
"title": "Image with placeholder",
"description": "",
"artifacts": [
"IMAGE"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.GifImageSample",
"id": "20200630162214",
"title": "GIF image",
"description": "",
"artifacts": [
"IMAGE"
],
"tags": [
"image",
"gif"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.SvgImageSample",
"id": "20200630161952",
"title": "SVG image",
"description": "",
"artifacts": [
"IMAGE"
],
"tags": [
"image",
"svg"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.image.ImageSample",
"id": "20200630144659",
"title": "Markdown image",
"description": "",
"artifacts": [
"IMAGE"
],
"tags": [
"image"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.HtmlDetailsSample",
"id": "20200630120752",
"title": "Details HTML tag",
"description": "Handling of `details` HTML tag",
"artifacts": [
"HTML",
"IMAGE"
],
"tags": [
"rendering",
"image",
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.HtmlCenterTagSample",
"id": "20200630120101",
"title": "Center HTML tag",
"description": "Handling of `center` HTML tag",
"artifacts": [
"HTML",
"IMAGE"
],
"tags": [
"rendering",
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.HtmlEmptyTagReplacementSample",
"id": "20200630115725",
"title": "HTML empty tag replacement",
"description": "Render custom content when HTML tag contents is empty, in case of self-closed HTML tags or tags without content (closed right after opened)",
"artifacts": [
"HTML"
],
"tags": [
"rendering",
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.HtmlIFrameSample",
"id": "20200630115521",
"title": "IFrame HTML tag",
"description": "Handling of `iframe` HTML tag",
"artifacts": [
"HTML",
"IMAGE"
],
"tags": [
"rendering",
"image",
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.HtmlImageSample",
"id": "20200630115300",
"title": "Html images",
"description": "Usage of HTML images",
"artifacts": [
"HTML",
"IMAGE"
],
"tags": [
"rendering",
"image",
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.HtmlEnhanceSample",
"id": "20200630115103",
"title": "Enhance custom HTML tag",
"description": "Custom HTML tag implementation that _enhances_ a part of text given start and end indices",
"artifacts": [
"HTML"
],
"tags": [
"rendering",
"span",
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.HtmlRandomCharSize",
"id": "20200630114923",
"title": "Random char size HTML tag",
"description": "Implementation of a custom HTML tag handler that assigns each character a random size",
"artifacts": [
"HTML"
],
"tags": [
"rendering",
"span",
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.html.HtmlAlignSample",
"id": "20200630114630",
"title": "Align HTML tag",
"description": "Implement custom HTML tag handling",
"artifacts": [
"HTML"
],
"tags": [
"rendering",
"span",
"html"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.editor.EditorHeadingSample",
"id": "20200630113954",
"title": "Heading edit handler",
"description": "Handling of heading node in editor",
"artifacts": [
"EDITOR",
"INLINE_PARSER"
],
"tags": [
"editor"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.NoParsingSample",
"id": "20200629171212",
"title": "No parsing",
"description": "All commonmark parsing is disabled (both inlines and blocks)",
"artifacts": [
"CORE"
],
"tags": [
"parsing",
"rendering"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.InlinePluginNoDefaultsSample",
"id": "20200629170857",
"title": "Inline parsing without defaults",
"description": "Configure inline parser plugin to **not** have any **inline** parsing",
"artifacts": [
"INLINE_PARSER"
],
"tags": [
"parsing"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.editor.EditorNewLineContinuationSample",
"id": "20200629170348",
"title": "Editor new line continuation",
"description": "Sample of how new line character can be handled in order to add a _continuation_, for example adding a new bullet list item if current line starts with one",
"artifacts": [
"EDITOR",
"INLINE_PARSER"
],
"tags": [
"editor"
]
},
{
"javaClassName": "io.noties.markwon.app.samples.editor.EditorMultipleEditSpansSample",
"id": "20200629165920",