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.

 [I'm an inline-style link](https://grey.software/)
 [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

Image with Title

![alt text](https://grey.software/logo.png "Grey Software")

alt text

Tables

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |

TablesAreCool
col 3 isright-aligned$1600
col 2 iscentered$12
zebra stripesare neat$1

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.

Inline HTML

<dl>
  <dt>Definition list</dt>
  <dd>Is something people use sometimes.</dd>

  <dt>Markdown in HTML</dt>
  <dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
</dl>
Definition list
Is something people use sometimes.
Markdown in HTML
Does *not* work **very** well. Use HTML tags.

Markdown Playground

Loading CodeSandbox...