Calmcode - mkdocs: footnotes

Footnotes

1 2 3 4 5 6 7 8 9

First we need to install a dependency.

pip install pygments

The contents of mkdocs.yml is listed below.

site_name: My Docs
theme:
  name: material
  palette:
    primary: purple
    accent: cyan
  font:
    text: Ubuntu
  logo:
    icon: cloud
markdown_extensions:
  - footnotes
  - codehilite:
      linennums: true

The contents of the backend.md file is listed below.

# Backend

Our backend is written in python and go. We have some coding habbits.

![](/images/img.png)

This image[^1] demonstrates something interesting.

```python
for i in range(10):
    print(i)

[^1]: From a pydata video, can be found here.