# Some simple markdown

More detail here: https://www.markdownguide.org/cheat-sheet/

## Bullets and lists

Use `*` to create bullet points.

Use `1.` to number lists you can increment the number yourself, or repeat 1. and let Jupyter Book increment numbers.

## Headings

Use #, ##, ###, #### for headings (of decreasing size).

## Footnote

Use `[^1]` to point to a footnote. Repeat for footnote, but use colon, `[^1]: Footnote text`.

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.

## Emphasis

Put asterix around words to make then *italic*. Or double asterix to make them **bold**.

## Table

Tables an be created with pipe `|` for vertical lines and dashes for horizontal lines.
There is no need to align the | 

| Name | Age | Sex |
| ---- | ---- | ---- |
| Ben | 32 | M |
| Sami | 33 | F |

## Images

To add an image use `![Image Header](image_file_name)`

![Jupyter Notebook](book.png)

