Welcome to MkDocs
For full documentation visit mkdocs.org.
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.
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
- Ordered item 1
- Ordered item 2
- Unordered item 1
- Unordered item 2
A Paragraph. * Not a list item.
- Ordered list item. * Not a separate list item.
Admonitions
The Admonition extension adds rST-style admonitions to Markdown documents.
Admonition
The Admonition extension adds rST-style admonitions to Markdown documents.
Note
The note/notice Admonition
Info
The Info/tip Admonition
Important
Important note
Warning
or Caution
Success
Success message
failure
Failure message
pymdownx.details
??? optional-class "Summary"
Here's some content.
??? multiple optional-class "Summary"
Here's some content.
Summary
Here's some content.
Summary
Here's some content.
Nested Details
???+ note "Open styled details"
??? danger "Nested details!"
And more content again.
Open styled details
Nested details!
And more content again.
pymdownx.emoji
The Emoji extension adds support for inserting emoji via simple short names enclosed within colons: :short_name: :grinning:
SuperFences
- Allowing the nesting of fences under blockquotes, lists, or other block elements (see Limitations for more info).
- Ability to specify custom fences to provide features like flowcharts, sequence diagrams, or other custom blocks.
- Allow disabling of indented code blocks in favor of only using the fenced variant (off by default).
- Experimental feature that preserves tabs within a code block instead of converting them to spaces which is Python Markdown's default behavior.