Markdown Guide
Headers
# H1
## H2
### H3
#### H4
H1
H2
H3
H4
Italic Emphasis
*asterisks* or _underscores_
asterisks or underscores
Strong Emphasis
**asterisks** or __underscores__
asterisks or underscores
Strikethrough
~~Scratch this.~~
Scratch this.
Inline-style link
Inline-style link with title
[I'm an inline-style link with title](https://grey.software/ "Grey Software")
Code and Syntax Highlighting Using JavaScript
```javascript
var s = "JavaScript syntax highlighting";
alert(s);```
var s = "JavaScript syntax highlighting";
alert(s);
Code and Syntax Highlighting Using Python
```python
s = "Python syntax highlighting"
print s```
s = "Python syntax highlighting"
print s
Images
### Image With Description
![Grey Software Logo](https://grey.software/logo-black-padded.png)
### Image With Link
[![Grey Software Logo](https://grey.software/logo-black-padded.png)](https://grey.software)
### Image With Title on Hover
[![Grey Software Logo](https://grey.software/logo-black-padded.png "Visit Our Website")](https://grey.software)
HTML In Markdown
### A Markdown Heading
<h3>An HTML Heading</h3>
A Markdown Heading
An HTML Heading
Blockquotes
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.
Tables
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
Further Learning
The Markdown Guide is a free and open-source reference guide that explains how to use Markdown, the simple and easy-to-use markup language you can use to format virtually any document.