|
| 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