1. Links
  2. Including math
  3. Heading basics
  4. Including Coding Segments
  5. Lists
  6. Including Images
  7. Creating Tables
1. TOC
{:toc}

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
  1. thing 1
  2. thing 2
  3. thing 3

Including Images

Need to upload the image (png or jpg or whatever format) to the /images folder and then reference like this:

![image label](/images/image_name.extension

e.g.
![fast ai](/images/fastai.png)

fast ai

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 |