umma.dev

Markdown Syntax

Notes on markdown syntax.

Headings

# h1
## h2
### h3
#### h4
##### h5
###### h6

Bold and Italics

This is **bold** text
This is _italic_ text

Blockquotes

> Enter your quote here

Lists

* unordered
* unordered
1. item one
2. item two
3. item three
4. item four

Links

[text](url)

Images

![alt text](img src)

Tables

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

Code Blocks

```[lang]

[your code here]

```