This guide provides an illustrative guide to using markdown.
Markdown:
_Here is a line that should be italicized_!
Sample Output:
Here is a line that should be italicized!
Markdown:
***Here is a line that should be bolded***!
Sample Output:
Here is a line that should be bolded!
Markdown:
~~Here is a line that should be struck through~~
Sample Output:
Here is a line that should be struck through
Markdown:
# Here is an H1
## Here is an H2
### Here is an H3
#### Here is an H4
##### Here is an H5
Sample Output:
Markdown:
Here is a [link](http://prefetch.net)
Sample Output:
Here is a link
Markdown:
Here is a [link](#named-anchor)
Sample Output: Here is a link
Markdown:
Please visit [Prefetch.net]
[Prefetch.net]: http://prefetch.net
Sample Output:
Please visit [Prefetch.net] [Prefetch.net]: http://prefetch.net
Markdown:
![DOS 640K](/images/dos-640k.jpg)
Sample Output:
Markdown:
> "This is a block quote"
Sample Output:
“This is a block quote”
Markdown:
`git commit -m 'new commit to repo'`
Sample Output:
git commit -m 'new commit to repo'
Markdown:
```
while :; do
sleep 1
done
```
Sample Output:
while :; do
sleep 1
done
Markdown:
* List item 1
* List item 2
* List item 3
Sample Output:
Markdown:
1. List item 1
2. List item 2
3. List item 3
Sample Output:
Markdown:
* List item 1
* List item 2
1. List item 1
2. List item 2
Sample Output:
Markdown:
Here is a line that needs a hard break<SPACE><SPACE>
More text
Sample Output:
Here is a line that needs a hard break
More text
Markdown:
Column 1 | Column 2 | Column 3
-------- | -------- | --------
info | info | info
Sample Output:
Markdown:
***
___
Sample Output: