Reference
Source code in app/app.py
1 2 3 4 5 |
|
hello()
Prints hello world
Source code in app/app.py
2 3 4 5 |
|
Diagram
graph LR
A[Start] --> B{Error?};
B -->|Yes| C[Hmm...];
C --> D[Debug];
D --> B;
B ---->|No| E[Yay!];
Project layout
mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.