Basic Markdown Guide
07 Apr 2022 - Maxwell Ito -
1 minute read
Here’s everything you’ll ever need to know about markdown. Sections may have display followed by code.
Headers, Lists, Font Styles
<!-- more hash tags = smaller heading -->
# H1
## H2
### H3
#### H4
##### H5
###### H6
<!-- lists -->
1. ordered
2. lists
- unordered
- lists
<!-- font styles -->
**bold**
*italic*
~strikethrough~
`code`
> block text
```<lang> code block```
Links/Images
here is a [link.](https://youtu.be/dQw4w9WgXcQ)
image: ![text](image.jpg)
Misc
<!-- table -->
| Binary | 1 | 10 | 11 | 100 |
| 1 | 1 | 10 | 11 | 100 |
| 10 | 10 | 100 | 110 | 1000 |
| 11 | 11 | 110 | 1001 | 1100 |
| 100 | 100 | 1000| 1100 | 10000 |
<!-- horizontal line -->
---
<!-- also any html you want (md supports it) -->
<h1 style="color: red;"> hello </h1>
GitHub Uses
<!-- GitHub profile views counters, Komarev example -->
![](https://komarev.com/ghpvc/?username=YOUR_USER_HERE&label=Profile%20views&color=HEX_COLOR_HERE&style=flat)
<!-- Other tags, shields.io, customize on their site -->
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)]
<!-- Jump to section -->
[Features](#features)
LaTeX
<!-- Supported through MathJax -->
$$\lim_{n \to \infty}\frac{C_{n+1}}{C_{n}} = 4$$
Hope this is a good reference.