tldr/pages/common/mkdocs.md

21 lines
408 B
Markdown
Raw Normal View History

2022-10-06 14:53:50 +01:00
# mkdocs
> Project documentation with Markdown.
> More information: <https://www.mkdocs.org>.
- Create a new mkdocs project:
`mkdocs new {{project_name}}`
- Serve the project in the current directory using the mkdocs dev-server:
`mkdocs serve`
- Build the documentation in the current directory:
`mkdocs build`
- Deploy the documentation in the current directory to GitHub pages:
`mkdocs gh-deploy`