Update Markdown formatter to support footnotes and hard wraps natively

This commit is contained in:
Kijin Sung 2017-06-29 23:58:20 +09:00
parent cbd324c35b
commit 464325c6f6
9 changed files with 106 additions and 19 deletions

View file

@ -0,0 +1,14 @@
<div>
This is *true* markdown text.
</div>
<p>This sentence has a footnote. [^1]</p>
<p>[^1]: Here's the footnote content.</p>
<p><code>fenced code block</code></p>
<p>Hello | World
----- | ------
Foo | Bar
Baz | Rhymix</p>