forked from vsch/flexmark-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPegdownOptionsAdapter.java
198 lines (161 loc) · 7.81 KB
/
PegdownOptionsAdapter.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
package com.vladsch.flexmark.profiles.pegdown;
import com.vladsch.flexmark.Extension;
import com.vladsch.flexmark.ext.abbreviation.AbbreviationExtension;
import com.vladsch.flexmark.ext.anchorlink.AnchorLinkExtension;
import com.vladsch.flexmark.ext.autolink.AutolinkExtension;
import com.vladsch.flexmark.ext.definition.DefinitionExtension;
import com.vladsch.flexmark.ext.emoji.EmojiExtension;
import com.vladsch.flexmark.ext.escaped.character.EscapedCharacterExtension;
import com.vladsch.flexmark.ext.gfm.strikethrough.StrikethroughExtension;
import com.vladsch.flexmark.ext.gfm.tasklist.TaskListExtension;
import com.vladsch.flexmark.ext.tables.TablesExtension;
import com.vladsch.flexmark.ext.typographic.TypographicExtension;
import com.vladsch.flexmark.ext.wikilink.WikiLinkExtension;
import com.vladsch.flexmark.html.HtmlRenderer;
import com.vladsch.flexmark.parser.ListOptions;
import com.vladsch.flexmark.parser.MutableListOptions;
import com.vladsch.flexmark.parser.Parser;
import com.vladsch.flexmark.parser.ParserEmulationProfile;
import com.vladsch.flexmark.util.KeepType;
import com.vladsch.flexmark.util.options.DataHolder;
import com.vladsch.flexmark.util.options.MutableDataSet;
import java.util.ArrayList;
import static com.vladsch.flexmark.profiles.pegdown.Extensions.*;
public class PegdownOptionsAdapter {
private final MutableDataSet myOptions;
private int myPegdownExtensions = 0;
private boolean myIsUpdateNeeded = false;
public PegdownOptionsAdapter() {
myOptions = new MutableDataSet();
}
public PegdownOptionsAdapter(DataHolder dataSet) {
myOptions = new MutableDataSet(dataSet);
}
public PegdownOptionsAdapter(int pegdownExtensions) {
myOptions = new MutableDataSet();
myPegdownExtensions = pegdownExtensions;
myIsUpdateNeeded = true;
}
public static DataHolder flexmarkOptions(int pegdownExtensions) {
PegdownOptionsAdapter optionsAdapter = new PegdownOptionsAdapter(pegdownExtensions);
return optionsAdapter.getFlexmarkOptions();
}
public boolean haveExtensions(int mask) {
return (myPegdownExtensions & mask) != 0;
}
public boolean allExtensions(int mask) {
return (myPegdownExtensions & mask) == mask;
}
public DataHolder getFlexmarkOptions() {
if (myIsUpdateNeeded) {
myIsUpdateNeeded = false;
MutableDataSet options = myOptions;
ArrayList<Extension> extensions = new ArrayList<>();
//DUMMY_REFERENCE_KEY | MULTI_LINE_IMAGE_URLS | INTELLIJ_DUMMY_IDENTIFIER | RELAXED_STRONG_EMPHASIS_RULES
options.clear();
// Setup List Options for Fixed List Indent profile
options.setFrom(ParserEmulationProfile.PEGDOWN);
//options.set(Parser.PARSE_GITHUB_ISSUE_MARKER, true);
options.set(HtmlRenderer.SUPPRESS_HTML_BLOCKS, haveExtensions(SUPPRESS_HTML_BLOCKS));
options.set(HtmlRenderer.SUPPRESS_INLINE_HTML, haveExtensions(SUPPRESS_INLINE_HTML));
// add default extensions in pegdown
extensions.add(EscapedCharacterExtension.create());
if (haveExtensions(ABBREVIATIONS)) {
extensions.add(AbbreviationExtension.create());
options.set(AbbreviationExtension.ABBREVIATIONS_KEEP, KeepType.LAST);
}
if (haveExtensions(ANCHORLINKS | EXTANCHORLINKS)) {
options.set(HtmlRenderer.RENDER_HEADER_ID, false);
extensions.add(AnchorLinkExtension.create());
if (haveExtensions(EXTANCHORLINKS)) {
options.set(AnchorLinkExtension.ANCHORLINKS_WRAP_TEXT, false);
} else if (haveExtensions(ANCHORLINKS)) {
options.set(AnchorLinkExtension.ANCHORLINKS_WRAP_TEXT, true);
}
}
if (haveExtensions(AUTOLINKS)) {
extensions.add(AutolinkExtension.create());
}
if (haveExtensions(DEFINITIONS)) {
// not implemented yet, but have placeholder
extensions.add(DefinitionExtension.create());
}
if (!haveExtensions(FENCED_CODE_BLOCKS)) {
// disable fenced code blocks
options.set(Parser.FENCED_CODE_BLOCK_PARSER, false);
} else {
options.set(Parser.MATCH_CLOSING_FENCE_CHARACTERS, false);
}
if (haveExtensions(FORCELISTITEMPARA)) {
// first item is loose if second item is loose
options.set(Parser.LISTS_LOOSE_WHEN_HAS_NON_LIST_CHILDREN, true);
} else {
// should already be set
}
if (haveExtensions(HARDWRAPS)) {
options.set(HtmlRenderer.SOFT_BREAK, "<br />\n");
options.set(HtmlRenderer.HARD_BREAK, "<br />\n<br />\n");
}
if (!haveExtensions(ATXHEADERSPACE)) {
options.set(Parser.HEADING_NO_ATX_SPACE, true);
}
if (haveExtensions(QUOTES | SMARTS)) {
// not implemented yet, have placeholder
extensions.add(TypographicExtension.create());
options.set(TypographicExtension.TYPOGRAPHIC_SMARTS, haveExtensions(SMARTS));
options.set(TypographicExtension.TYPOGRAPHIC_QUOTES, haveExtensions(QUOTES));
}
if (!haveExtensions(RELAXEDHRULES)) {
options.set(Parser.THEMATIC_BREAK_RELAXED_START, false);
}
if (haveExtensions(STRIKETHROUGH)) {
extensions.add(StrikethroughExtension.create());
}
if (haveExtensions(TABLES)) {
extensions.add(TablesExtension.create());
options.set(TablesExtension.TRIM_CELL_WHITESPACE, false);
options.set(TablesExtension.HEADER_SEPARATOR_COLUMN_MATCH, false);
}
if (haveExtensions(TASKLISTITEMS)) {
extensions.add(TaskListExtension.create());
}
if (haveExtensions(WIKILINKS)) {
extensions.add(WikiLinkExtension.create());
// pegdown does not have an option for selecting Creole or GitHub wiki link syntax: Creole puts page ref first, link text second, GitHub the other way around
options.set(WikiLinkExtension.LINK_FIRST_SYNTAX, false);
}
// pegdown does not have emoji shortcuts
if (false) {
extensions.add(EmojiExtension.create());
// need to set the location of the emoji icons from emoji-cheat-sheet on github or http://www.emoji-cheat-sheet.com/
//options.set(EmojiExtension.ROOT_IMAGE_PATH, emojiInstallDirectory());
// this will use GitHub URLs for emoji icons, not recommended
options.set(EmojiExtension.USE_IMAGE_URLS, true);
}
// pegdown does not have multi-line urls
if (false) {
options.set(Parser.PARSE_MULTI_LINE_IMAGE_URLS, true);
}
myOptions.set(Parser.EXTENSIONS, extensions);
}
return myOptions.toImmutable();
}
public PegdownOptionsAdapter setPegdownExtensions(int pegdownExtensions) {
//noinspection PointlessBitwiseExpression
myPegdownExtensions = pegdownExtensions;
myIsUpdateNeeded = true;
return this;
}
public PegdownOptionsAdapter addPegdownExtensions(int pegdownExtensions) {
//noinspection PointlessBitwiseExpression
myPegdownExtensions |= pegdownExtensions;
myIsUpdateNeeded = true;
return this;
}
public PegdownOptionsAdapter removePegdownExtensions(int pegdownExtensions) {
//noinspection PointlessBitwiseExpression
myPegdownExtensions &= ~pegdownExtensions;
myIsUpdateNeeded = true;
return this;
}
}