Move stuff.
This commit is contained in:
parent
1a732ad1cd
commit
620d736936
|
@ -0,0 +1,42 @@
|
||||||
|
---
|
||||||
|
title: Kramdown
|
||||||
|
layout: default
|
||||||
|
---
|
||||||
|
|
||||||
|
### For jekyll (gh-pages)
|
||||||
|
|
||||||
|
# _config.yml
|
||||||
|
markdown: kramdown
|
||||||
|
kramdown:
|
||||||
|
input: GFM
|
||||||
|
|
||||||
|
### Footnotes (Kramdown)
|
||||||
|
|
||||||
|
This is some text.[^1]. Other text.[^footnote].
|
||||||
|
|
||||||
|
[^1]: Some *crazy* footnote definition.
|
||||||
|
|
||||||
|
### Abbreviations (Kramdown)
|
||||||
|
|
||||||
|
This is some text not written in HTML but in another language!
|
||||||
|
|
||||||
|
*[another language]: It's called Markdown
|
||||||
|
*[HTML]: HyperTextMarkupLanguage
|
||||||
|
|
||||||
|
### Classes and IDs (Kramdown)
|
||||||
|
|
||||||
|
A simple paragraph with an ID attribute.
|
||||||
|
{: #para-one}
|
||||||
|
|
||||||
|
> A blockquote with a title
|
||||||
|
{:title="The blockquote title"}
|
||||||
|
{: #myid}
|
||||||
|
|
||||||
|
* {:.cls} This item has the class "cls"
|
||||||
|
|
||||||
|
{:.ruby}
|
||||||
|
Some code here
|
||||||
|
|
||||||
|
### References
|
||||||
|
|
||||||
|
* http://kramdown.gettalong.org/syntax.html
|
34
markdown.md
34
markdown.md
|
@ -56,37 +56,3 @@ layout: default
|
||||||
----
|
----
|
||||||
****
|
****
|
||||||
|
|
||||||
Kramdown extensions
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
### Footnotes (Kramdown)
|
|
||||||
|
|
||||||
This is some text.[^1]. Other text.[^footnote].
|
|
||||||
|
|
||||||
[^1]: Some *crazy* footnote definition.
|
|
||||||
|
|
||||||
### Abbreviations (Kramdown)
|
|
||||||
|
|
||||||
This is some text not written in HTML but in another language!
|
|
||||||
|
|
||||||
*[another language]: It's called Markdown
|
|
||||||
*[HTML]: HyperTextMarkupLanguage
|
|
||||||
|
|
||||||
### Classes and IDs (Kramdown)
|
|
||||||
|
|
||||||
A simple paragraph with an ID attribute.
|
|
||||||
{: #para-one}
|
|
||||||
|
|
||||||
> A blockquote with a title
|
|
||||||
{:title="The blockquote title"}
|
|
||||||
{: #myid}
|
|
||||||
|
|
||||||
* {:.cls} This item has the class "cls"
|
|
||||||
|
|
||||||
|
|
||||||
{:.ruby}
|
|
||||||
Some code here
|
|
||||||
|
|
||||||
### References
|
|
||||||
|
|
||||||
* http://kramdown.gettalong.org/syntax.html
|
|
||||||
|
|
Loading…
Reference in New Issue