Skip to content

Commit 5c28b2d

Browse files
committed
add include file sample and update readme and wiki
1 parent 6160c11 commit 5c28b2d

File tree

8 files changed

+122
-4
lines changed

8 files changed

+122
-4
lines changed

.idea/compiler.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown-exported-files.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,8 @@ Progress
282282
- HTML blocks: all, non-comments, comments
283283
- Processor Extensions
284284
- Jekyll front matter
285+
- Jekyll tag elements, with support for `{% include file %}`,
286+
[Include Markdown and HTML content with Jekyll Tag Extension]
285287
- GitBook link URL encoding. Not applicable
286288
- HTML comment nodes: Block and Inline
287289
- Multi-line Image URLs
@@ -461,4 +463,5 @@ BSD (2-clause) licensed, see [LICENSE.txt] file.
461463
[sirthias]: https://github.com/sirthias
462464
[table.md]: https://github.com/vsch/idea-multimarkdown/blob/master/test/data/performance/table.md
463465
[vsch/pegdown]: https://github.com/vsch/pegdown/tree/develop
466+
[Include Markdown and HTML content with Jekyll Tag Extension]: ../../wiki/Usage#include-markdown-and-html-content-with-jekyll-tag-extension
464467

VERSION.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,7 @@ flexmark-java
7070
- [0.1.0](#010)
7171

7272

73-
&nbsp;</details>
74-
75-
&nbsp;<details id="version-history"><summary>**To Do**</summary>
73+
&nbsp;</details><details id="version-history"><summary>**To Do**</summary>
7674

7775
## To Do
7876

assets/images/flexmark-parsing.png

30.5 KB
Loading

flexmark-ext-xwiki-macros/src/main/javadoc/overview.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h3 id="block-macros">Block Macros</h3>
3636
<h3 id="inline-macros">Inline Macros:</h3>
3737
<p>A non-indenting space should be included before the opening and closing inline macro to prevent
3838
it from being interpreted as a block macro.</p>
39-
<p><img src="file:/Users/vlad/Library/Application Support/IdeaIC2017-1/idea-multimarkdown/emojis/information_source.png" alt="emoji symbols:information_source" height="20" width="20" align="absmiddle" /> Non-indenting space below is replaced with <code></code></p>
39+
<p><img src="file:/Users/vlad/Library/Application Support/IntelliJIdea2017.1/idea-multimarkdown/emojis/information_source.png" alt="emoji symbols:information_source" height="20" width="20" align="absmiddle" /> Non-indenting space below is replaced with <code></code></p>
4040
<pre><code class="markdown">․{{macroName attribute4='another format'}}
4141
possibly containing other lines, but no blank lines
4242
․{{/macroName}}

flexmark-java-samples/flexmark-java-samples.iml

+4
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,9 @@
3535
<orderEntry type="module" module-name="flexmark-profile-pegdown" />
3636
<orderEntry type="module" module-name="flexmark-test-suite" />
3737
<orderEntry type="module" module-name="flexmark-youtrack-converter" />
38+
<orderEntry type="module" module-name="flexmark-ext-ins" />
39+
<orderEntry type="module" module-name="flexmark-ext-jekyll-tag" />
40+
<orderEntry type="module" module-name="flexmark-ext-superscript" />
41+
<orderEntry type="module" module-name="flexmark-ext-xwiki-macros" />
3842
</component>
3943
</module>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
package com.vladsch.flexmark.samples;
2+
3+
import com.vladsch.flexmark.Extension;
4+
import com.vladsch.flexmark.ast.AutoLink;
5+
import com.vladsch.flexmark.ast.Document;
6+
import com.vladsch.flexmark.ast.Node;
7+
import com.vladsch.flexmark.ext.autolink.AutolinkExtension;
8+
import com.vladsch.flexmark.ext.jekyll.tag.JekyllTag;
9+
import com.vladsch.flexmark.ext.jekyll.tag.JekyllTagExtension;
10+
import com.vladsch.flexmark.html.AttributeProvider;
11+
import com.vladsch.flexmark.html.AttributeProviderFactory;
12+
import com.vladsch.flexmark.html.HtmlRenderer;
13+
import com.vladsch.flexmark.html.IndependentAttributeProviderFactory;
14+
import com.vladsch.flexmark.html.renderer.AttributablePart;
15+
import com.vladsch.flexmark.html.renderer.NodeRendererContext;
16+
import com.vladsch.flexmark.parser.Parser;
17+
import com.vladsch.flexmark.util.html.Attributes;
18+
import com.vladsch.flexmark.util.options.MutableDataHolder;
19+
import com.vladsch.flexmark.util.options.MutableDataSet;
20+
21+
import java.io.File;
22+
import java.util.Arrays;
23+
import java.util.HashMap;
24+
import java.util.List;
25+
import java.util.Map;
26+
27+
public class JekyllIncludeFileSample {
28+
static String commonMark(String markdown, Map<String, String> included) {
29+
MutableDataHolder options = new MutableDataSet();
30+
options.set(Parser.EXTENSIONS, Arrays.asList(new Extension[] { AutolinkExtension.create(), JekyllTagExtension.create() }));
31+
32+
// change soft break to hard break
33+
options.set(HtmlRenderer.SOFT_BREAK, "<br/>");
34+
35+
Parser parser = Parser.builder(options).build();
36+
HtmlRenderer renderer = HtmlRenderer.builder(options).build();
37+
38+
Node document = parser.parse(markdown);
39+
40+
// see if document has includes
41+
if (document instanceof Document) {
42+
Document doc = (Document) document;
43+
if (doc.contains(JekyllTagExtension.TAG_LIST)) {
44+
List<JekyllTag> tagList = JekyllTagExtension.TAG_LIST.getFrom(doc);
45+
Map<String, String> includeHtmlMap = new HashMap<String, String>();
46+
47+
for (JekyllTag tag : tagList) {
48+
String includeFile = tag.getParameters().toString();
49+
if (tag.getTag().equals("include") && !includeFile.isEmpty() && !includeHtmlMap.containsKey(includeFile)) {
50+
// see if it exists
51+
if (included.containsKey(includeFile)) {
52+
// have the file
53+
String text = included.get(includeFile);
54+
55+
if (includeFile.endsWith(".md")) {
56+
Node includeDoc = parser.parse(text);
57+
String includeHtml = renderer.render(includeDoc);
58+
includeHtmlMap.put(includeFile, includeHtml);
59+
60+
if (includeDoc instanceof Document) {
61+
// copy any definition of reference elements from included file to our document
62+
parser.transferReferences(doc, (Document) includeDoc);
63+
}
64+
} else {
65+
includeHtmlMap.put(includeFile, text);
66+
}
67+
}
68+
}
69+
70+
if (!includeHtmlMap.isEmpty()) {
71+
doc.set(JekyllTagExtension.INCLUDED_HTML, includeHtmlMap);
72+
}
73+
}
74+
}
75+
}
76+
77+
final String html = renderer.render(document);
78+
return html;
79+
}
80+
81+
public static void main(String[] args) {
82+
Map<String, String> included = new HashMap<>();
83+
included.put("test.md", "## Included Heading\n" +
84+
"\n" +
85+
"Included paragraph\n" +
86+
"\n" +
87+
"[ref]: http://example.com\n" +
88+
"");
89+
90+
included.put("test.html", "<p>some text</p>\n" +
91+
"");
92+
93+
String html = commonMark("http://github.com/vsch/flexmark-java\n" +
94+
"\n" +
95+
"[ref]\n" +
96+
"\n" +
97+
"{% include test.md %}\n" +
98+
"\n" +
99+
"", included);
100+
System.out.println(html);
101+
102+
html = commonMark("http://github.com/vsch/flexmark-java\n" +
103+
"\n" +
104+
"[ref]\n" +
105+
"\n" +
106+
"{% include test.html %}\n" +
107+
"\n" +
108+
"", included);
109+
System.out.println(html);
110+
}
111+
}

0 commit comments

Comments
 (0)