Browse Source

Demo: abbr & footnotes example

pull/14/head
Vitaly Puzrin 10 years ago
parent
commit
deaceda395
  1. 7
      CHANGELOG.md
  2. 22
      demo/index.html
  3. 22
      demo/sample.md

7
CHANGELOG.md

@ -1,3 +1,10 @@
1.4.2 / WIP
------------------
- Added footnotes support.
- Added definitions lists support.
1.4.1 / 2014-11-13
------------------

22
demo/index.html

@ -281,6 +281,28 @@ Like links, Images also have a footnote style syntax
With a reference later in the document defining the URL location:
[id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
# Abbreviations
This is HTML abbreviation example. It converts "HTML",
but keep intact partial entries like "xxxHTMLyyy" and so on.
*[HTML]: Hyper Text Markup Language
# Footnotes
Footnote 1 link [^1].
Footnote 2 link [^2]. One more time [^2].
Inline footnote definition ^[Text of inline footnote].
[^1]: footnote text.
[^2]: footnote **can have markup**.
and multiple paragraphs.
</textarea>
</div>
<section class="col-xs-6 full-height">

22
demo/sample.md

@ -168,3 +168,25 @@ Like links, Images also have a footnote style syntax
With a reference later in the document defining the URL location:
[id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
# Abbreviations
This is HTML abbreviation example. It converts "HTML",
but keep intact partial entries like "xxxHTMLyyy" and so on.
*[HTML]: Hyper Text Markup Language
# Footnotes
Footnote 1 link [^1].
Footnote 2 link [^2]. One more time [^2].
Inline footnote definition ^[Text of inline footnote].
[^1]: footnote text.
[^2]: footnote **can have markup**.
and multiple paragraphs.

Loading…
Cancel
Save