Home
Commands¶
mkdocs new [dir-name]- Create a new project.mkdocs serve- Start the live-reloading docs server.mkdocs build- Build the documentation site.mkdocs -h- Print help message and exit.
Project layout¶
mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.
Python example code¶
def hello_world():
print("Hello, world!")
test
| Left aligned Content | Center aligned Content | Right aligned Content |
|---|---|---|
| Italic | Bold | ~~Strikethrough~~ |
| The quick brown fox jumps over the lazy dog. |
Note
Essential details that users should not overlook, even when browsing quickly.
Tip
Additional advice to aid users in achieving better outcomes.
Important
Vital information required for users to attain success.
Warning
Urgent content that requires immediate user focus due to possible risks.
Caution
Possible negative outcomes resulting from an action.