Files
cheatsheets/kramdown.md
Rico Sta. Cruz 511de900ba Formatting updates (#2133)
- Update some sheets which have very long sections
- Remove `layout: 2017/sheet` (everything has the same layout now)
- Remove outdated sheets
2024-04-03 18:30:24 +11:00

1.2 KiB

title, category
title category
Kramdown Markup

About

{: .-intro}

Kramdown is a Markdown parser in Ruby.

Configuration

  • parse_block_html - process kramdown syntax inside blocks

  • parse_span_html - process kramdown syntax inside inlines

  • html_to_native - convert html elements to native elements

    {::options parse_block_html="true" /}

For the GFM parser:

  • hard_wrap

http://kramdown.gettalong.org/parser/gfm.html

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