Quick Reference
Below are examples of all available structural elements that can be used in a kramdown text. Since the kramdown syntax is a superset of the Markdown syntax, only a small part of the available syntax is not available in standard Markdown syntax. Note, that only the most basic syntax information is given. However, a link to the detailed syntax for each element is provided (which also details the differences to the standard Markdown syntax). The quick reference is for version 2.4.0 of the syntax documentation.
kramdown has two main classes of elements: block and span-level elements. Block-level elements are used to create paragraphs, headers, lists and so on whereas span-level elements are used to markup text phrases as emphasized, as a link and so on.
All examples below feature the kramdown source, the converted HTML source (shown when hovering over the kramdown source) and the output as it appears in the browser. This looks like this:
|
Live browser view of example code
|
Block-level Elements - Main Structural Elements
Paragraphs
Consecutive lines of text are considered to be one paragraph. As with other block level elements you have to add a blank line to separate it from the following block-level element:
|
The first paragraph. Another paragraph |
Explicit line breaks in a paragraph can be made by using two spaces or two backslashes at the end of a line:
|
This is a paragraph |
Headers
kramdown supports Setext style headers and atx style headers. A header must always be preceded by a blank line except at the beginning of the document:
|
First level headerSecond level header |
|
H1 headerH2 headerH3 headerH4 headerH5 headerH6 header |
If you set the option auto_ids
to false
(for example, by using the options
extension, see
Extensions), then the automatic header ID generation is turned off:
|
A header without an ID |
Blockquotes
A blockquote is started using the >
marker followed by an optional space; all following lines that
are also started with the blockquote marker belong to the blockquote. You can use any block-level
elements inside a blockquote:
|
|
You may also be lazy with the >
markers as long as there is no blank line:
|
But this is a separate paragraph. |
Code Blocks
kramdown supports two different code block styles. One uses lines indented with either four spaces or one tab whereas the other uses lines with tilde characters as delimiters – therefore the content does not need to be indented:
|
This is a sample code block.
|
|
|
The following is a code block with a language specified:
|
|
Horizontal Rules
It is easy to insert a horizontal rule in kramdown: just use three or more asterisks, dashes or underscores, optionally separated by spaces or tabs, on an otherwise blank line:
|
|
Lists
kramdown supports ordered and unordered lists. Ordered lists are started by using a number followed by a period, a space and then the list item text. The content of a list item consists of block-level elements. All lines which have the same indent as the text of the line with the list marker belong to the list item:
|
|
As with block quotes, you may be lazy when using the list item marker:
|
|
As the content consists of block-level elements you can do things like the following:
|
|
Nested lists are also easy to create:
|
|
Lists can occur directly after other block-level elements, however, there has to be at least one blank line if you want to follow a paragraph with a list:
|
This is a paragraph. 1. This is NOT a list.
|
Unordered lists are started by using an asterisk, a dash or a plus sign (they can be mixed) and a space. Apart from that unordered lists follow the same rules as ordered lists:
|
|
Definition Lists
A definition list works similar to a normal list and is used to associate definitions with terms. Definition lists are started when a normal paragraph is followed by a line starting with a colon and then the definition text. One term can have many definitions and multiple terms can have the same definition. Each line of the preceding paragraph is assumed to contain one term, for example:
|
|
If you insert a blank line before a definition (note: there must only be one blank line between the terms and the first definition), the definition will be wrapped in a paragraph:
|
|
Each term can be styled using span-level elements and each definition is parsed as block-level elements, i.e. you can use any block-level in a definition. Just use the same indent for the lines following the definition line:
|
|
Tables
kramdown supports a syntax for creating simple tables. A line starting with a pipe character (|
)
starts a table row. However, if the pipe characters is immediately followed by a dash (-
), a
separator line is created. Separator lines are used to split the table header from the table body
(and optionally align the table columns) and to split the table body into multiple parts. If the
pipe character is followed by an equal sign (=
), the tables rows below it are part of the table
footer.
|
|
|
|
HTML elements
kramdown allows you to use block-level HTML tags (div
, p
, pre
, …) to markup whole blocks of
text – just start a line with a block-level HTML tag. kramdown syntax is normally not processed
inside an HTML tag but this can be changed with the parse_block_html
option. If this options is
set to true
, then the content of a block-level HTML tag is parsed by kramdown either as block
level or span-level text, depending on the tag:
|
Something that stays right and is not wrapped in a para.
This is wrapped in a para. This can contain only span level elements. |
Block Attributes
You can assign any attribute to a block-level element. Just directly follow the block with a block
inline attribute list (or short: block IAL). A block IAL consists of a left curly brace, followed
by a colon, the attribute definitions and a right curly brace. Here is a simple example which sets the
title
attribute of a block quote:
|
|
As one often wants to set one or more CSS classes on an element, there is an easy shortcut:
|
|
A shortcut for setting the ID is also provided. Just prefix the ID with a hash symbol:
|
|
Sometimes one wants to use the same attributes for many elements. kramdown allows you to define the attributes in one place with an attribute list definition (or short: ALD) and just reference this definition in a block IAL. An ALD has the same structure as a block IAL but the colon has to be replace with a colon, the reference name and another colon. By just using the reference name as-is in a block IAL, one can include the attributes of the referenced ALD:
|
paragraph |
The order in a block IAL or ALD is important because later defined attributes overwrite (with the exception of the shortcut for CSS classes) prior defined attributes:
|
paragraph |
Extensions
kramdown provides some less used functionality through a common syntax. This will allow the easy addition of other extensions if need arises. Currently, there are extensions for ignoring text (i.e. treating text as comment), for inserting arbitrary text as-is into the output and for setting kramdown options.
Here is an example that shows how to insert comments into text:
|
This is a paragraph … paragraph continues here. Extensions can also be used inline **see**! |
As one can see from the above example, the syntax for extensions is nearly identical to that of
ALDs. However, there is no trailing colon after the extension name and the extension end tag needs a
slash between the colon and the extension name. One can also use the short form of the end tag, i.e.
{:/}
. Attribute definitions can be specified on the start tag by separating them with a space from
the extension name. Also, if the extension does not have a body, there needs to be a slash right
before the closing brace:
|
Header without id |
Span-Level Elements - Text Modifiers
Emphasis
Emphasis can be added to text by surrounding the text with either asterisks or underscores:
|
This is emphasized, this too! |
Strong emphasis can be done by doubling the delimiters:
|
This is strong, this too! |
The form with the asterisks can also be used to markup parts of words:
|
This works as expected! |
Links and Images
A simple link can be created by surrounding the text with square brackets and the link URL with parentheses:
|
A link to the kramdown homepage. |
You can also add title information to the link:
|
A link to the homepage. |
There is another way to create links which does not interrupt the text flow. The URL and title are defined using a reference name and this reference name is then used in square brackets instead of the link URL:
|
A link to the homepage. |
If the link text itself is the reference name, the second set of square brackets can be omitted:
|
A link to the kramdown hp. |
Images can be created in a similar way: just use an exclamation mark before the square brackets. The link text will become the alternative text of the image and the link URL specifies the image source:
|
An image: |
Inline Code
Text phrases can be easily marked up as code by surrounding them with backticks:
|
Use |
If you want to use literal backticks in your code, just use two or more backticks as delimiters. The space right after the beginning delimiter and the one right before the closing delimiter are ignored:
|
Use backticks to markup code,
e.g. |
Footnotes
Footnotes can easily be used in kramdown. Just set a footnote marker (consists of square brackets with a caret and the footnote name inside) in the text and somewhere else the footnote definition (which basically looks like a reference link definition):
|
|
The footnote definition can contain any block-level element, all lines following a footnote definition indented with four spaces or one tab belong to the definition:
|
|
As can be seen above the footnote name is only used for the anchors and the numbering is done automatically in document order. Repeated footnote markers will link to the same footnote definition.
Abbreviations
Abbreviations will work out of the box once you add an abbreviation definition. So you can just write the text and add the definitions later on.
|
This is an HTML example. |
HTML Elements
HTML is not only supported on the block-level but also on the span-level:
|
This is written in red. |
Inline Attributes
As with a block-level element you can assign any attribute to a span-level elements using a span inline attribute list (or short: span IAL). A span IAL has the same syntax as a block IAL and must immediately follow the span-level element:
|
This is red. |