-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJParsedown.java
1534 lines (1352 loc) · 41 KB
/
JParsedown.java
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
/*
Copyright (c) 2019 Ashur Rafiev
https://github.com/ashurrafiev/JParsedown
MIT Licence: https://github.com/ashurrafiev/JParsedown/blob/master/LICENSE
This work is derived from Parsedown version 1.8.0-beta-5:
Copyright (c) 2013-2018 Emanuil Rusev
http://parsedown.org
*/
package com.xrbpowered.jparsedown;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Map.Entry;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class JParsedown {
public static final String version = "1.0.4";
protected class ReferenceData {
public String url;
public String title;
public ReferenceData(String url, String title) {
this.url = url;
this.title = title;
}
}
protected class Line {
public String body;
public String text;
public int indent;
public Line(String line) {
body = line;
text = line.replaceFirst("^\\s+", "");
indent = line.length() - text.length();
}
}
protected abstract class Handler {
public abstract Element function(Element element);
}
protected abstract class ElementsHandler extends Handler {
public abstract LinkedList<Element> elementFunction(Element element);
@Override
public final Element function(Element element) {
element.elements = elementFunction(element);
return element;
}
}
protected class LineElementsHandler extends ElementsHandler {
public String text;
public LineElementsHandler(String text) {
this.text = text;
}
@Override
public LinkedList<Element> elementFunction(Element element) {
return lineElements(text, element.nonNestables);
}
}
protected class LinesElementsHandler extends ElementsHandler {
public LinkedList<String> lines = new LinkedList<>();
public LinesElementsHandler(String text) {
if(text!=null)
lines.add(text);
}
@Override
public LinkedList<Element> elementFunction(Element element) {
return linesElements(lines);
}
}
protected class ListItemElementHandler extends ElementsHandler {
public LinkedList<String> lines = new LinkedList<>();
public ListItemElementHandler(String body) {
if(body!=null) lines.add(body);
}
@Override
public LinkedList<Element> elementFunction(Element element) {
LinkedList<Element> elements = linesElements(lines);
if(!lines.contains("") &&
!elements.isEmpty() && elements.getFirst().name!=null
&& elements.getFirst().name.equals("p")) {
elements.getFirst().name = null;
}
return elements;
}
}
protected static class Element {
public String name = null;
public HashMap<String, String> attributes = new HashMap<>();
public LinkedList<Element> elements = new LinkedList<>();
public String text = null;
public String rawHtml = null;
public HashSet<Class<?>> nonNestables = new HashSet<>();
public Handler handler = null;
public Boolean autoBreak = null;
public Element() {
}
public Element(String name) {
this.name = name;
}
public Element(String name, String text) {
this.name = name;
this.text = text;
}
public Element(String name, Element element) {
this.name = name;
this.elements.add(element);
}
public Element(String name, Handler handler) {
this.name = name;
this.handler = handler;
}
public Element addAttribute(String name, String value) {
attributes.put(name, value);
return this;
}
public Element handle() {
Element element = this;
if(handler!=null) {
element = handler.function(element);
handler = null;
}
return element;
}
}
protected abstract class Component {
public Element element = null;
public String markup = null;
public boolean hidden = false;
public Element extractElement() {
if(element==null) {
if(markup!=null) {
element = new Element();
element.rawHtml = markup;
}
else if(hidden) {
element = new Element();
}
}
return element;
}
}
protected abstract class Block extends Component {
public boolean identified = false;
public int interrupted = 0;
public Block setElement(Element e) {
this.element = e;
return this;
}
public boolean isContinuable() {
return false;
}
public boolean isCompletable() {
return false;
}
public abstract Block startBlock(Line line, Block block);
public Block continueBlock(Line line) {
return null;
}
public Block completeBlock() {
return null;
}
}
protected class BlockParagraph extends Block {
@Override
public Block startBlock(Line line, Block block) {
return new BlockParagraph().setElement(
new Element("p", new LineElementsHandler(line.text))
);
}
@Override
public boolean isContinuable() {
return false;
}
@Override
public Block continueBlock(Line line) {
if(interrupted>0)
return null;
((LineElementsHandler) element.handler).text += "\n" + line.text;
return this;
}
}
protected class BlockCode extends Block {
@Override
public Block startBlock(Line line, Block block) {
if(block!=null && block instanceof BlockParagraph && block.interrupted==0)
return null;
if(line.indent>=4) {
return new BlockCode().setElement(
new Element("pre", new Element("code", line.body.substring(4)))
);
}
else
return null;
}
@Override
public boolean isContinuable() {
return true;
}
@Override
public Block continueBlock(Line line) {
if(line.indent>=4) {
Element e = element.elements.getFirst();
while(interrupted>0) {
e.text += "\n";
interrupted--;
}
e.text += "\n";
e.text += line.body.substring(4);
return this;
}
else
return null;
}
@Override
public boolean isCompletable() {
return true;
}
@Override
public Block completeBlock() {
return this;
}
}
protected class BlockComment extends Block {
public boolean closed = false;
@Override
public Block startBlock(Line line, Block block) {
if(markupEscaped || safeMode)
return null;
if(line.text.indexOf("<!--")==0) {
BlockComment b = new BlockComment();
b.element = new Element();
b.element.rawHtml = line.body;
b.element.autoBreak = true;
if(line.text.contains("-->"))
b.closed = true;
return b;
}
else
return null;
}
@Override
public boolean isContinuable() {
return true;
}
@Override
public Block continueBlock(Line line) {
if(closed)
return null;
element.rawHtml += "\n" + line.body;
if(line.text.contains("-->"))
closed = true;
return this;
}
}
protected class BlockFencedCode extends Block {
public char marker;
public int openerLength;
public boolean complete = false;
public BlockFencedCode() {
}
public BlockFencedCode(char marker, int openerLength) {
this.marker = marker;
this.openerLength = openerLength;
}
@Override
public Block startBlock(Line line, Block block) {
char marker = line.text.charAt(0);
int openerLength = startSpan(line.text, marker);
if(openerLength<3)
return null;
String infostring = line.text.substring(openerLength).trim();
if(infostring.contains("`"))
return null;
Element e = new Element("code", "");
if(!infostring.isEmpty())
e.attributes.put("class", "language-"+infostring);
return new BlockFencedCode(marker, openerLength).setElement(
new Element("pre", e)
);
}
@Override
public boolean isContinuable() {
return true;
}
@Override
public Block continueBlock(Line line) {
if(complete)
return null;
Element e = element.elements.getFirst();
while(interrupted>0) {
e.text += "\n";
interrupted--;
}
int len = startSpan(line.text, marker);
if(len>=openerLength && line.text.substring(len).trim().isEmpty()) {
if(!e.text.isEmpty())
e.text = e.text.substring(1);
complete = true;
return this;
}
e.text += "\n" + line.body;
return this;
}
@Override
public boolean isCompletable() {
return true;
}
@Override
public Block completeBlock() {
return this;
}
}
protected class BlockHeader extends Block {
@Override
public Block startBlock(Line line, Block block) {
int level = startSpan(line.text, '#');
if(level>6)
return null;
String text = line.text.substring(level);
if(strictMode && !text.isEmpty() && text.charAt(0)!=' ')
return null;
text = text.trim();
Block b = new BlockHeader().setElement(
new Element("h"+level, new LineElementsHandler(text))
);
b.element.attributes.put("id", generateHeaderId(text, level));
return b;
}
}
protected class BlockList extends Block {
public int indent;
public String pattern;
public boolean loose = false;
public boolean ordered;
public String marker;
public String markerType;
public String markerTypeRegex;
public Element li;
@Override
public Block startBlock(Line line, Block block) {
boolean ordered;
String pattern;
if(Character.isDigit(line.text.charAt(0))) {
ordered = true; // ol
pattern = "[0-9]{1,9}+[.\\)]";
}
else {
ordered = false; // ul
pattern = "[*+-]";
}
Matcher m = Pattern.compile("^("+pattern+"([ ]++|$))(.*+)").matcher(line.text);
if(m.find()) {
String marker = m.group(1);
String body = m.group(3);
int contentIndent = m.group(2).length();
if(contentIndent>=5) {
contentIndent--;
marker = marker.substring(0, -contentIndent);
while(contentIndent>0) {
body = " "+body;
contentIndent--;
}
}
else if(contentIndent==0) {
marker += " ";
}
String markerWithoutWhitespace = marker.substring(0, marker.indexOf(' '));
BlockList b = new BlockList();
b.indent = line.indent;
b.pattern = pattern;
b.ordered = ordered;
b.marker = marker;
b.markerType = !ordered ?
markerWithoutWhitespace :
markerWithoutWhitespace.substring(markerWithoutWhitespace.length()-1, markerWithoutWhitespace.length());
b.markerTypeRegex = Pattern.quote(b.markerType);
b.setElement(new Element(ordered ? "ol" : "ul"));
if(ordered) {
String listStart = marker.substring(0, marker.indexOf(b.markerType)).replaceAll("$0+", "");
if(listStart.isEmpty())
listStart = "0";
if(!listStart.equals("1")) {
if(block!=null && block instanceof BlockParagraph && block.interrupted==0)
return null;
b.element.attributes.put("start", listStart);
}
}
b.li = new Element("li", new ListItemElementHandler(body));
b.element.elements.add(b.li);
return b;
}
else
return null;
}
@Override
public boolean isContinuable() {
return true;
}
@Override
public Block continueBlock(Line line) {
if(interrupted>0 && ((ListItemElementHandler) li.handler).lines.isEmpty())
return null;
int requiredIndent = indent + marker.length();
Matcher m;
if(line.indent<requiredIndent && (
(ordered && (m = Pattern.compile("^[0-9]++"+markerTypeRegex+"(?:[ ]++(.*)|$)").matcher(line.text)).find()) ||
(!ordered && (m = Pattern.compile("^"+markerTypeRegex+"(?:[ ]++(.*)|$)").matcher(line.text)).find())
)) {
if(interrupted>0) {
((ListItemElementHandler) li.handler).lines.add("");
loose = true;
interrupted = 0;
}
String text = m.group(1)!=null ? m.group(1) : "";
indent = line.indent;
li = new Element("li", new ListItemElementHandler(text));
element.elements.add(li);
return this;
}
else if(line.indent<requiredIndent && new BlockList().startBlock(line, null)!=null) {
return null;
}
if(line.text.charAt(0)=='[' && new BlockReference().startBlock(line, null)!=null) {
return this;
}
if(line.indent >= requiredIndent) {
if(interrupted>0) {
((ListItemElementHandler) li.handler).lines.add("");
loose = true;
interrupted = 0;
}
String text = line.body.substring(requiredIndent);
((ListItemElementHandler) li.handler).lines.add(text);
return this;
}
if(interrupted==0) {
String text = line.body.replaceAll("^[ ]{0,"+requiredIndent+"}+", "");
((ListItemElementHandler) li.handler).lines.add(text);
return this;
}
return null;
}
@Override
public boolean isCompletable() {
return true;
}
@Override
public Block completeBlock() {
if(loose) {
for(Element li : element.elements) {
if(!((ListItemElementHandler) li.handler).lines.getLast().isEmpty())
((ListItemElementHandler) li.handler).lines.add("");
}
}
return this;
}
}
protected class BlockQuote extends Block {
@Override
public Block startBlock(Line line, Block block) {
Matcher m;
if((m = Pattern.compile("^>[ ]?+(.*+)").matcher(line.text)).find()) {
return new BlockQuote().setElement(
new Element("blockquote", new LinesElementsHandler(m.group(1)))
);
}
else
return null;
}
@Override
public boolean isContinuable() {
return true;
}
@Override
public Block continueBlock(Line line) {
if(interrupted>0)
return null;
Matcher m;
if(line.text.charAt(0)=='>' && (m = Pattern.compile("^>[ ]?+(.*+)").matcher(line.text)).find()) {
((LinesElementsHandler) element.handler).lines.add(m.group(1));
return this;
}
if(interrupted==0) {
((LinesElementsHandler) element.handler).lines.add(line.text);
return this;
}
return null;
}
}
protected class BlockRule extends Block {
@Override
public Block startBlock(Line line, Block block) {
char marker = line.text.charAt(0);
int count = startSpan(line.text, marker);
if(count>=3 && line.text.trim().length()==count) {
return new BlockRule().setElement(
new Element("hr")
);
}
else
return null;
}
}
protected class BlockSetextHeader extends Block {
@Override
public Block startBlock(Line line, Block block) {
if(block==null || !(block instanceof BlockParagraph) || block.interrupted>0)
return null;
char marker = line.text.charAt(0);
int count = startSpan(line.text, marker);
if(line.indent<4 && line.text.trim().length()==count) {
block.element.name = marker=='=' ? "h1" : "h2";
String text = ((LineElementsHandler) block.element.handler).text;
block.element.attributes.put("id", generateHeaderId(text, marker=='=' ? 1 : 2));
return block;
}
else
return null;
}
}
protected static String regexHtmlAttribute = "[a-zA-Z_:][\\w:.-]*+(?:\\s*+=\\s*+(?:[^\"\\'=<>`\\s]+|\"[^\"]*+\"|\\'[^\\']*+\\'))?+";
protected static HashSet<String> textLevelElements = new HashSet<>(Arrays.asList(new String[] {
"a", "br", "bdo", "abbr", "blink", "nextid", "acronym", "basefont",
"b", "em", "big", "cite", "small", "spacer", "listing",
"i", "rp", "del", "code", "strike", "marquee",
"q", "rt", "ins", "font", "strong",
"s", "tt", "kbd", "mark",
"u", "xm", "sub", "nobr",
"sup", "ruby",
"var", "span",
"wbr", "time",
}));
protected class BlockMarkup extends Block {
public String name;
@Override
public Block startBlock(Line line, Block block) {
if(markupEscaped || safeMode)
return null;
Matcher m;
if((m = Pattern.compile("^<[\\/]?+(\\w*)(?:[ ]*+"+regexHtmlAttribute+")*+[ ]*+(\\/)?>").matcher(line.text)).find()) {
String element = m.group(1).toLowerCase();
if(textLevelElements.contains(element))
return null;
BlockMarkup b = new BlockMarkup();
b.name = m.group(1);
b.element = new Element();
b.element.rawHtml = line.text;
b.element.autoBreak = true;
return b;
}
else
return null;
}
@Override
public boolean isContinuable() {
return true;
}
@Override
public Block continueBlock(Line line) {
if(interrupted>0)
return null;
element.rawHtml += "\n" + line.body;
return this;
}
}
protected class BlockReference extends Block {
@Override
public Block startBlock(Line line, Block block) {
Matcher m;
if(line.text.indexOf(']')>=0 && (m = Pattern.compile("^\\[(.+?)\\]:[ ]*+<?(\\S+?)>?(?:[ ]+[\"\\'(](.+)[\"\\')])?[ ]*+$").matcher(line.text)).find()) {
String id = m.group(1).toLowerCase();
ReferenceData data = new ReferenceData(convertUrl(m.group(2)), m.group(3));
referenceDefinitions.put(id, data);
return new BlockReference().setElement(new Element());
}
else
return null;
}
}
protected class BlockTable extends Block {
public ArrayList<String> alignments;
@Override
public Block startBlock(Line line, Block block) {
if(block==null || !(block instanceof BlockParagraph) || block.interrupted>0)
return null;
if(((LineElementsHandler) block.element.handler).text.indexOf('|')<0
&& line.text.indexOf('|')<0
&& line.text.indexOf(':')<0
|| ((LineElementsHandler) block.element.handler).text.indexOf('\n')>=0)
return null;
if(!line.text.replaceAll("[ -:\\|]", "").isEmpty())
return null;
ArrayList<String> alignments = new ArrayList<>();
String divider = line.text.trim().replaceAll("(^\\|+)|(\\|+$)", "");
String[] dividerCells = divider.split("\\|");
for(String dividerCell : dividerCells) {
dividerCell = dividerCell.trim();
if(dividerCell.isEmpty())
return null;
String alignment = null;
if(dividerCell.charAt(0)==':')
alignment = "left";
if(dividerCell.charAt(dividerCell.length()-1)==':')
alignment = alignment==null ? "right" : "center";
alignments.add(alignment);
}
LinkedList<Element> headerElements = new LinkedList<>();
String header = ((LineElementsHandler) block.element.handler).text;
header = header.trim().replaceAll("(^\\|+)|(\\|+$)", "");
String[] headerCells = header.split("\\|");
if(headerCells.length!=alignments.size())
return null;
int index = 0;
for(String headerCell : headerCells) {
headerCell = headerCell.trim();
Element headerElement = new Element("th", new LineElementsHandler(headerCell));
String alignment = alignments.get(index);
if(alignment!=null)
headerElement.attributes.put("style", "text-align:"+alignment);
headerElements.add(headerElement);
index++;
}
BlockTable b = new BlockTable();
b.alignments = alignments;
b.identified = true;
b.setElement(new Element("table"));
b.element.elements.add(new Element("thead"));
b.element.elements.add(new Element("tbody"));
Element headerRowElement = new Element("tr");
headerRowElement.elements = headerElements;
b.element.elements.getFirst().elements.add(headerRowElement);
return b;
}
@Override
public boolean isContinuable() {
return true;
}
@Override
public Block continueBlock(Line line) {
if(interrupted>0)
return null;
if(alignments.size()==1 || line.text.charAt(0)=='|' || line.text.indexOf('|')>0) {
LinkedList<Element> elements = new LinkedList<>();
String row = line.text.trim().replaceAll("(^\\|+)|(\\|+$)", "");
Matcher m = Pattern.compile("(?:(\\\\[|])|[^|`]|`[^`]++`|`)++").matcher(row);
int index = 0;
while(index<alignments.size() && m.find()) {
String cell = m.group(0).trim();
Element element = new Element("td", new LineElementsHandler(cell));
String alignment = alignments.get(index);
if(alignment!=null)
element.attributes.put("style", "text-align:"+alignment);
elements.add(element);
index++;
}
Element rowElement = new Element("tr");
rowElement.elements = elements;
element.elements.getLast().elements.add(rowElement);
return this;
}
else
return null;
}
}
protected abstract class Inline extends Component {
public int extent;
public int position = -1;
public Inline() {
}
public Inline setExtent(String s) {
this.extent = s.length();
return this;
}
public Inline setExtent(int len) {
this.extent = len;
return this;
}
public Inline setElement(Element element) {
this.element = element;
return this;
}
public abstract Inline inline(String text, String context);
}
protected class InlineText extends Inline {
@Override
public Inline inline(String text, String context) {
Inline inline = new InlineText().setExtent(text).setElement(new Element());
inline.element.elements = replaceAllElements(
breaksEnabled ? "[ ]*+\\n" : "(?:[ ]*+\\\\|[ ]{2,}+)\\n",
new Element[] {
new Element("br"),
new Element(null, "\n")
},
text);
return inline;
}
}
protected class InlineCode extends Inline {
@Override
public Inline inline(String text, String context) {
char marker = text.charAt(0);
Pattern regex = Pattern.compile("^(["+marker+"]++)[ ]*+(.+?)[ ]*+(?<!["+marker+"])\\1(?!"+marker+")", Pattern.DOTALL);
Matcher m = regex.matcher(text);
if(m.find()) {
text = m.group(2).replaceAll("[ ]*+\\n", " ");
return new InlineCode().setExtent(m.group(0)).setElement(
new Element("code", text)
);
}
else
return null;
}
}
protected class InlineEmailTag extends Inline {
@Override
public Inline inline(String text, String context) {
if(text.indexOf('>')<0)
return null;
String hostnameLabel = "[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?";
String commonMarkEmail = "[a-zA-Z0-9.!#$%&\\'*+\\/=?^_`{|}~-]++@"
+ hostnameLabel + "(?:\\." + hostnameLabel + ")*";
Matcher m = Pattern.compile("^<((mailto:)?"+commonMarkEmail+")>", Pattern.CASE_INSENSITIVE).matcher(text);
if(m.find()) {
String url = m.group(1);
if(m.group(2)==null)
url = "mailto:"+url;
return new InlineEmailTag().setExtent(m.group(0)).setElement(
new Element("a", m.group(1)).addAttribute("href", url)
);
}
else
return null;
}
}
protected static Pattern[] strongRegex = {
Pattern.compile("^[*]{2}((?:\\\\\\*|[^*]|[*][^*]*+[*])+?)[*]{2}(?![*])", Pattern.DOTALL),
Pattern.compile("^__((?:\\\\_|[^_]|_[^_]*+_)+?)__(?!_)", Pattern.DOTALL | Pattern.UNICODE_CHARACTER_CLASS),
};
protected static Pattern[] emRegex = {
Pattern.compile("^[*]((?:\\\\\\*|[^*]|[*][*][^*]+?[*][*])+?)[*](?![*])", Pattern.DOTALL),
Pattern.compile("^_((?:\\\\_|[^_]|__[^_]*__)+?)_(?!_)\\b", Pattern.DOTALL | Pattern.UNICODE_CHARACTER_CLASS),
};
protected class InlineEmphasis extends Inline {
@Override
public Inline inline(String text, String context) {
if(text.length()<2)
return null;
char marker = text.charAt(0);
int markerIndex = marker=='*' ? 0 : 1;
String emphasis;
Matcher m = null;
if(text.charAt(1)==marker && (m = strongRegex[markerIndex].matcher(text)).find())
emphasis = "strong";
else if((m = emRegex[markerIndex].matcher(text)).find())
emphasis = "em";
else
return null;
return new InlineEmphasis().setExtent(m.group(0)).setElement(
new Element(emphasis, new LineElementsHandler(m.group(1)))
);
}
}
protected static String specialCharacters = "\\`*_{}[]()>#+-.!|~";
protected class InlineEscapeSequence extends Inline {
@Override
public Inline inline(String text, String context) {
if(text.length()>1 && specialCharacters.indexOf(text.charAt(1))>=0) {
Element element = new Element();
element.rawHtml = Character.toString(text.charAt(1));
return new InlineEscapeSequence().setExtent(2).setElement(element);
}
else
return null;
}
}
protected class InlineImage extends Inline {
@Override
public Inline inline(String text, String context) {
if(text.length()<2 || text.charAt(1)!='[')
return null;
text = text.substring(1);
Inline link = new InlineLink().inline(text, context);
if(link==null)
return null;
Inline inline = new InlineImage().setExtent(link.extent+1).setElement(new Element("img"));
inline.element.autoBreak = true;
inline.element.attributes.put("src", link.element.attributes.get("href"));
inline.element.attributes.put("alt", ((LineElementsHandler) link.element.handler).text);
for(Entry<String, String> attr : link.element.attributes.entrySet()) {
if(!attr.getKey().equals("href"))
inline.element.attributes.put(attr.getKey(), attr.getValue());
}
return inline;
}
}
protected class InlineLink extends Inline {
@Override
public Inline inline(String text, String context) {
Element element = new Element("a", new LineElementsHandler(null));
element.nonNestables.add(InlineUrl.class);
element.nonNestables.add(InlineLink.class);
int extent = 0;
String remainder = text;
Matcher m;
// Parsedown original pattern: "\\[((?:[^][]++|(?R))*+)\\]" (does not compile in Java)
if((m = Pattern.compile("\\[((?:\\\\.|[^\\[\\]]|!\\[[^\\[\\]]*\\])*)\\]").matcher(remainder)).find()) {
((LineElementsHandler) element.handler).text = m.group(1);
extent += m.group(0).length();
remainder = remainder.substring(extent);
}
else
return null;
if((m = Pattern.compile("^[(]\\s*+((?:[^ ()]++|[(][^ )]+[)])++)(?:[ ]+(\"[^\"]*+\"|\\'[^\\']*+\'))?\\s*+[)]").matcher(remainder)).find()) {
element.attributes.put("href", convertUrl(m.group(1)));
if(m.group(2)!=null)
element.attributes.put("title", m.group(2).substring(1, m.group(2).length()-1));
extent += m.group(0).length();
}
else {
String definition;
if((m = Pattern.compile("^\\s*\\[(.*?)\\]").matcher(remainder)).find()) {
definition = !m.group(1).isEmpty() ? m.group(1) :
((LineElementsHandler) element.handler).text;
definition = definition.toLowerCase();
extent += m.group(0).length();
}
else {
definition = ((LineElementsHandler) element.handler).text.toLowerCase();
}
ReferenceData reference = referenceDefinitions.get(definition);
if(reference==null)
return null;
element.attributes.put("href", reference.url);
element.attributes.put("title", reference.title);
}
return new InlineLink().setExtent(extent).setElement(element);
}
}
protected class InlineMarkup extends Inline {
@Override
public Inline inline(String text, String context) {
if(markupEscaped || safeMode || text.indexOf('>')<0)
return null;
Matcher m;
if(text.charAt(1)=='/' && (m = Pattern.compile("^<\\/\\w[\\w-]*+[ ]*+>", Pattern.DOTALL).matcher(text)).find()) {
Element element = new Element();
element.rawHtml = m.group(0);
return new InlineMarkup().setExtent(m.group(0)).setElement(element);
}
if(text.charAt(1)=='!' && (m = Pattern.compile("^<!---?[^>-](?:-?+[^-])*-->", Pattern.DOTALL).matcher(text)).find()) {
Element element = new Element();
element.rawHtml = m.group(0);
return new InlineMarkup().setExtent(m.group(0)).setElement(element);
}
if(text.charAt(1)!=' ' && (m = Pattern.compile("^<\\w[\\w-]*+(?:[ ]*+"+regexHtmlAttribute+")*+[ ]*+\\/?>", Pattern.DOTALL).matcher(text)).find()) {
Element element = new Element();
element.rawHtml = m.group(0);
return new InlineMarkup().setExtent(m.group(0)).setElement(element);
}
return null;
}
}
protected class InlineSpecialCharacter extends Inline {
@Override
public Inline inline(String text, String context) {
Matcher m;
if(text.length()>1 && text.charAt(1)!=' ' && text.indexOf(';')>=0 &&
(m = Pattern.compile("^&(#?+[0-9a-zA-Z]++);").matcher(text)).find()) {
Element element = new Element();
element.rawHtml = "&"+m.group(1)+";";
return new InlineSpecialCharacter().setExtent(m.group(0)).setElement(element);
}
else
return null;
}
}
protected class InlineStrikeThrough extends Inline {
@Override
public Inline inline(String text, String context) {
if(text.length()<2)
return null;
Matcher m;
if(text.charAt(1)=='~' && (m = Pattern.compile("^~~(?=\\S)(.+?)(?<=\\S)~~").matcher(text)).find()) {
return new InlineStrikeThrough().setExtent(m.group(0)).setElement(
new Element("del", new LineElementsHandler(m.group(1)))
);
}
else
return null;
}
}