Common Flavor
Markdown is intended to be as easy-to-read and easy-to-write as is feasible.
John Gruber
References
- Markdown (Daring Fireball)
- CommonMark Spec
- GitHub Flavored Markdown (GFM) Spec
- Cheat Sheet (Markdown Guide)
All
HTMLoutput examples are generated withpandoc.pandoc -f gfm -t html <<< '**Markdown**' # <p><strong>Markdown</strong></p>
Section Heading <h1> - <h6>
h1
h2
h3
h4
h5
h6
# h1
## h2
### h3
#### h4
##### h5
###### h6
Inline Code <code>
A fragment of computer code: element name (code), filename (index.html), computer program (cat), or any string a computer would recognize (~, if, else).
A fragment of computer code: element name (`code`), filename (`index.html`), computer program (`cat`), or any string a computer would recognize (`~`, `if`, `else`).
Emphasis <em>
Stress emphasis on the right syllable.
stress _emphasis_ on the right _syllable_.
Strong Importance <strong>
Strong importance: it should not be used to apply bold styling, use css for that. Don't use <b> for styling either!
**Strong importance:** it should not be used to apply **bold styling**, use **`css`** for that. **Don't use** `<b>` for styling either!
Block Quotation <blockquote>
The
blockquoteelement represents a section that is quoted from another source.Example
<blockquote> <p>[Jane] then said she liked [...] fish.</p> </blockquote>
> The `blockquote` element represents a section that is quoted from _another source_.
>
>> **Example**
>>
>> ```html
>> <blockquote>
>> <p>[Jane] then said she liked [...] fish.</p>
>> </blockquote>
>> ```
Anchor/Hyperlink <a>
link to usage, freki, anchor to References
Image <img>


[](/twemoji/new-moon.svg)


Unordered List <ul>
- apple
- Fuji
- Granny Smith
- Honeycrisp
- Gala
- Red Delicious
- Golden Delicious
- Pink Lady
- Braeburn
- Jonagold
- McIntosh.
- dog
- small
- Chihuahua
- Pomeranian
- Yorkshire Terrier
- Shih Tzu
- Dachshund
- Pug
- French Bulldog
- Boston Terrier
- Maltese
- Cavalier King Charles Spaniel.
- small
- number
- positive
- 1
- 1.01
- 1.1
- 2
- 3
- 1
- negative
- -1
- -1.01
- -1.1
- -2
- -3
- -1
- positive
- apple
- Fuji
- Granny Smith
- Honeycrisp
- Gala
- Red Delicious
- Golden Delicious
- Pink Lady
- Braeburn
- Jonagold
- McIntosh.
- dog
- small
- Chihuahua
- Pomeranian
- Yorkshire Terrier
- Shih Tzu
- Dachshund
- Pug
- French Bulldog
- Boston Terrier
- Maltese
- Cavalier King Charles Spaniel.
- number
- positive
- 1
- 1.01
- 1.1
- 2
- 3
- negative
- -1
- -1.01
- -1.1
- -2
- -3
Ordered List <ol>
- item 01
- item 02
- item 03
1. item 01
1. item 02
1. item 03
Thematic Break <hr>
This is topic 1.
This is topic 2.
This is topic 3.
This is topic 4.
This is topic 1.
---
This is topic 2.
---
This is topic 3.
---
This is topic 4.
Fenced Code Block <pre><code>
{
"firstName": "John",
"lastName": "Gruber",
"markdown": ["GFM", "MDX"]
}
```json
{
"firstName": "John",
"lastName": "Gruber",
"markdown": ["GFM", "MDX"]
}
```
