From deaceda39544b1085e7cd7bd7e2c2bad1a61e23f Mon Sep 17 00:00:00 2001 From: Vitaly Puzrin Date: Fri, 28 Nov 2014 02:41:30 +0300 Subject: [PATCH] Demo: abbr & footnotes example --- CHANGELOG.md | 7 +++++++ demo/index.html | 22 ++++++++++++++++++++++ demo/sample.md | 22 ++++++++++++++++++++++ 3 files changed, 51 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb8faaf..a82a492 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +1.4.2 / WIP +------------------ + +- Added footnotes support. +- Added definitions lists support. + + 1.4.1 / 2014-11-13 ------------------ diff --git a/demo/index.html b/demo/index.html index 23d0a01..00dc1ec 100644 --- a/demo/index.html +++ b/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.
diff --git a/demo/sample.md b/demo/sample.md index 25b4469..2d09256 100644 --- a/demo/sample.md +++ b/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.