-
Notifications
You must be signed in to change notification settings - Fork 299
Expand file tree
/
Copy pathSyntheticLinkFormatterSample.java
More file actions
151 lines (126 loc) · 5.73 KB
/
SyntheticLinkFormatterSample.java
File metadata and controls
151 lines (126 loc) · 5.73 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
package com.vladsch.flexmark.java.samples;
import com.vladsch.flexmark.ast.Text;
import com.vladsch.flexmark.ast.TextBase;
import com.vladsch.flexmark.formatter.*;
import com.vladsch.flexmark.html.HtmlRenderer;
import com.vladsch.flexmark.parser.Parser;
import com.vladsch.flexmark.util.ast.Document;
import com.vladsch.flexmark.util.ast.Node;
import com.vladsch.flexmark.util.data.DataHolder;
import com.vladsch.flexmark.util.data.MutableDataHolder;
import com.vladsch.flexmark.util.data.MutableDataSet;
import com.vladsch.flexmark.util.sequence.BasedSequence;
import com.vladsch.flexmark.util.sequence.Escaping;
import com.vladsch.flexmark.util.sequence.PrefixedSubSequence;
import com.vladsch.flexmark.util.sequence.ReplacedTextMapper;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class SyntheticLinkFormatterSample {
public static class SyntheticLinkNodeFormatter implements PhasedNodeFormatter {
public SyntheticLinkNodeFormatter(DataHolder options) {
}
@Nullable
@Override
public Set<Class<?>> getNodeClasses() {
return new HashSet<>(Collections.singletonList(
Text.class
));
}
@Nullable
@Override
public Set<FormattingPhase> getFormattingPhases() {
Set<FormattingPhase> set = new HashSet<>();
set.add(FormattingPhase.DOCUMENT_BOTTOM);
return set;
}
@Override
public void renderDocument(@NotNull NodeFormatterContext context, @NotNull MarkdownWriter markdown, @NotNull Document document, @NotNull FormattingPhase phase) {
switch (phase) {
case DOCUMENT_BOTTOM:
markdown.blankLine();
markdown.append("Some inserted text with a link [flexmark-java](https://github.com/vsch/flexmark-java) in paragraph.");
markdown.blankLine();
break;
default:
break;
}
}
@Nullable
@Override
public Set<NodeFormattingHandler<?>> getNodeFormattingHandlers() {
return new HashSet<>(Collections.singletonList(
// Generic unknown node formatter
new NodeFormattingHandler<>(Text.class, SyntheticLinkNodeFormatter.this::render)
));
}
private void render(Text node, NodeFormatterContext context, MarkdownWriter markdown) {
BasedSequence original = node.getChars();
ReplacedTextMapper textMapper = new ReplacedTextMapper(original);
BasedSequence literal = Escaping.unescape(original, textMapper);
int lastEscaped = 0;
boolean wrapInTextBase = !(node.getParent() instanceof TextBase);
TextBase textBase = wrapInTextBase ? null : (TextBase) node.getParent();
Pattern pattern = Pattern.compile("\\bmarkdown\\b");
Matcher matcher = pattern.matcher(literal);
while (matcher.find()) {
int startOffset = textMapper.originalOffset(matcher.start());
int endOffset = textMapper.originalOffset(matcher.end());
if (startOffset != lastEscaped) {
BasedSequence escapedChars = original.subSequence(lastEscaped, startOffset);
markdown.append(escapedChars);
}
BasedSequence linkText = original.subSequence(startOffset, endOffset);
BasedSequence linkAddress = PrefixedSubSequence.prefixOf("http://commonmark.org", linkText.getEmptySuffix());
markdown.append('[').append(linkText).append(']');
markdown.append('(').append(linkAddress).append(')');
lastEscaped = endOffset;
}
if (lastEscaped > 0) {
if (lastEscaped != original.length()) {
BasedSequence escapedChars = original.subSequence(lastEscaped, original.length());
markdown.append(escapedChars);
}
}
}
static class Factory implements NodeFormatterFactory {
@NotNull
@Override
public NodeFormatter create(@NotNull DataHolder options) {
return new SyntheticLinkNodeFormatter(options);
}
}
}
public static class SyntheticLinkExtension implements Formatter.FormatterExtension {
private SyntheticLinkExtension() {
}
public static SyntheticLinkExtension create() {
return new SyntheticLinkExtension();
}
@Override
public void rendererOptions(MutableDataHolder options) {
}
@Override
public void extend(Formatter.Builder formatterBuilder) {
formatterBuilder.nodeFormatterFactory(new SyntheticLinkNodeFormatter.Factory());
}
}
public static void main(String[] args) {
MutableDataSet options = new MutableDataSet();
// set optional extensions
options.set(Parser.EXTENSIONS, Collections.singletonList(SyntheticLinkExtension.create()));
// uncomment to convert soft-breaks to hard breaks
//options.set(HtmlRenderer.SOFT_BREAK, "<br />\n");
Parser parser = Parser.builder(options).build();
HtmlRenderer renderer = HtmlRenderer.builder(options).build();
Formatter formatter = Formatter.builder(options).build();
// You can re-use parser and renderer instances
Node document = parser.parse("Some markdown content");
String markdown = formatter.render(document);
System.out.println(markdown);
}
}