Markdown is an easy way to format text. I use it often to write documentation and blog posts. These are just a few notes to myself about Markdown.
Sections
ATX Style Header
Lines starting with one to six hash symbols are translated to headers. One hash (#
) will become <h1>
, two will become <h2>
, and so on:
So the following lines
# Heading 1
## Heading 2
### Heading 3
Will look like:
Heading 1
Heading 2
Heading 3
Setext-Style headers
Lines followed by a line of equal (=
) signs become <h1>
headers.
Lines followed by a line of minus (-
) signs become <h2>
headers.
These lines
H1 Header use =================
H2 header use - ----------------
Will look like:
H1 Header use =
H2 header use -
Paragraphs
Paragraphs are consecutive lines of text separated by one or more blank lines.
So a block like this
Lorem ipsum dolor sit amet, consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat
non proident, sunt in culpa qui officia deserunt mollit
anim id est laborum.
Lorem ipsum dolor sit amet, consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut
labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat
non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Will look like:
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Emphasis
You can easily add italics and boldface text with markdown.
Italics
Text can be italicized by surrounding it with a single asterisks (*
) or underscores (_
).
This text has *italics* for _emphasis_
Will look like:
This text has italics for emphasis
Bold Text
Bold text is similar to italics, but you surround the text with two asterisks (**
) or two underscores (__
).
This text has **bold** for __emphasis__
Will look like:
This text has bold for emphasis
Combined Text Styles
You can combine italics and bold text
*italics* and __bold__ can be *__combined__* _italics_ and **bold** can be _**combined**_
Will look like:
italics and bold can be combined italics and bold can be combined
Strikethrough
Surround text with double tildes (~~
) to create strikethrough text.
This text has ~~strikethrough~~
Will look like.
This text has
strikethrough
Lists
Unordered Lists <ul>
Unordered lists are easy. You start consecutive lines with *
, +
, or -
chars. The chars get translated into <li>
So these three lines
* One
* Two
* Three
look like:
- One
- Two
- Three
You can nest lists within lists by preceding the line with spaces
* English
* One
* Two
* Three
* Tagalog
* Isa
* Dalawa
* Tatlo
looks like:
- English
- One
- Two
- Three
- Tagalog
- Isa
- Dalawa
- Tatlo
Numeric Lists
Ordered lists are made up of consecutive lines started with a number. Note: the actual number used at the start of the lines is irrelevant. The list will be properly ordered.
1. One
1. Two ( The 1. will become a 2. )
3. Three
looks like:
- One
- Two
- Three
Numeric lists can also be nested by indenting the sub-list lines.
1. Step 1
2. Step 2
1. Substep 1
2. Substep 2
3. Step 3
looks like:
- Step 1
- Step 2
- Substep 1
- Substep 2
- Step 3
Combining Ordered and Unordered Lists
You can combine ordered and unordered lists like this
1. Line Number One
* Bullet A
* Bullet B
2. Line Number Two
* Bullet C
3. Line Number Three
* Bullet D
The combined lists look like:
- Line Number One
- Bullet A
- Bullet B
- Line Number Two
- Bullet C
- Line Number Three
- Bullet D
Source Code
Much of my documentation has code examples in it. Markdown is able to handle inline code and separate code in its own block. ## Inline Source
Create inline code by surrounding your text with a single back-tick(`)
The following inline example
`inline code` in your text by surrounding it with back-ticks.
You can have
\`) use the \\ to escape it If you need to show a back-tick (
Looks like:
You can have
inline code
in your text by surrounding it with back-ticksIf you need to show a back-tick (`) use the \ to escape it
Block Quotes
Block quotes use the email indent format. Start lines that you want to quote with a greater than (>
) symbol.
These quoted lines
> This set of lines are
> in Block Quotes
>
> as are these
Will look like:
This set of lines are in Block Quotes
as are these
You can have multiple levels of indentation in block quotes by increasing the number of greater than symbols.
> First level of block quotes with *emphasis*
>> Nested quote with
>> * Unordered
>> * List
>> * Items
> and back again.
looks like:
First level of block quotes with emphasis > Nested quote with > * Unordered > * List > * Items and back again.
Links
Hyperlinks in Markdown are brackets containing the link description followed by parentheses containing the link. So a link to Markdown would be coded as
[Markdown](https://daringfireball.net/projects/markdown/)
and looks like
Images
Images can be embedded in text with by preceding a link to an image with an exclamation point (!
)

Looks like:
Giving an image with alt
text set to “Alternative Text”