Markdown Syntax
Links
[Link Text](https://www.example.com)
Images
Put a !
in front of the link syntax.
![Alt Text](https://www.example.com/image.png)
Syntax Highlighting
Insert the language name after the first set of backticks.
# ```python
import os
os.system("echo 'Hello World'")
# ```bash
export HELLO="world"
cat some-file | grep "hello"
# ```yaml
some: key
another: key
Tables
| name | value |
| ---- | ----- |
| a | b |
You can align headers to the left, center, or right by adding colons to the header syntax.
| --name-- | --value-- | description |
| :------- | :-------: | ----------: |
| a | b | c |
# H1 Header (biggest)
## H2 Header
### H3 Header
#### H4 Header
##### H5 Header
###### H6 Header (smallest)