Formatting Tricks
- Links
- Including math
- Heading basics
- Including Coding Segments
- Lists
- Including Images
- Creating Tables
1. TOC
{:toc}
Links
Some useful markdown tricks I used was links:
[label here](link here)
Including math
Including math using latex
$$ math here $$
$$ fraction = \frac{nominator}{denominator} $$
Which looks like this:
\(math here\) \(fraction = \frac{nominator}{denominator}\)
Heading basics
# First heading
## Second Heading
### Third Heading
Including Coding Segments
Surround the could with ``` brackets.
Lists
- thing 1
- thing 2
- thing 3
- thing 1
- thing 2
- thing 3
1. thing 1
2. thing 2
3. thing 3
- thing 1
- thing 2
- thing 3
Including Images
Need to upload the image (png or jpg or whatever format) to the /images folder and then reference like this:

Creating Tables
| Heaidng 1 | Heading 2 | Heading 3 | | ——— | ——— | ——– | | Item 1 | Item 2 | Item 3 |
| Heaidng 1 | Heading 2 | Heading 3 |
| --------- | --------- | -------- |
| Item 1 | Item 2 | Item 3 |