Skip to content

Reference

Source code in app/app.py
1
2
3
4
5
class SampleClass:
    def hello():
        """Prints hello world
        """
        print("hello world")

hello()

Prints hello world

Source code in app/app.py
2
3
4
5
def hello():
    """Prints hello world
    """
    print("hello world")

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.