---json
{
"description": "This page lists all markdown syntax supported in ComboStrap ",
"page_id": "8b6x98dwo3su5akqwmwoy",
"title": "Markdown syntax supported in ComboStrap"
}
---
====== ComboStrap UI - Markdown ======
===== About =====
''ComboStrap'' can render ''markdown'' syntaxes and this page lists all supported syntax.
===== List =====
==== Heading ====
The [[https://github.github.com/gfm/#atx-headings|Atx Heading]] is supported as [[docs:content:heading#markdown|Heading]].
# Heading 1
## Heading 2
==== Code ====
The [[https://daringfireball.net/projects/markdown/syntax#precode|precode]] is supported via the [[docs:block:preformatted|Indented code block component]]
* Input:
Indented code
block
* Output
The [[https://github.github.com/gfm/#fenced-code-blocks|fenced code block]] is supported via the [[docs:block:code|Code component]]
* Input
```html
Fenced Code Block
```
* Output:
==== Bold ====
We support the [[https://daringfireball.net/projects/markdown/syntax#emphasis|double asterix syntax]] for [[docs:styling:boldness|bold emphasis (ie strong)]]
* Input:
**double asterisks**
* output
\\
\\
\\
The syntax with two underscore ''%%__%%'' is actually not supported because it's the syntax that is used by the wiki language to specify [[docs:styling:underline|underline]].
==== List ====
[[https://daringfireball.net/projects/markdown/syntax#list|list]] are [[docs:lists:list|supported]] but with two spaces at the start of the line.
Input:
* Red
* Green
* Blue
Output
==== Horizontal Rule ====
[[https://daringfireball.net/projects/markdown/syntax#hr|Horizontal Rule]] are supported by using four or more dashes. See also the [[docs:layout:component:hr|horizontal rule]] component for more styling possibilities.
* Input:
----
* Output:
===== Support =====
Because the markdown syntax was never fully specified, there is a lot of different flavor. We follow in order the following specification:
* https://daringfireball.net/projects/markdown/syntax
* https://github.github.com/gfm
* https://spec.commonmark.org/