网站文档mkdocs

Mkdocs

mkdocs.org

安装

  1. 安装python2.7(安装时选中加入环境变量)
  2. pip install mkdocs & mkdocs –version
  3. pip install click-man
  4. mkdocs new my-project & cd my-project
  5. mkdocs serve
  6. mkdocs build
  7. mkdocs build –clean (清理已被删除的文档所生成的html文件)

mkdocs-material主题配置
点击看效果 mkdocs-material

1
2
1. pip install mkdocs-material
2. vim mkdocs.yml

mkdocs.yml 配置示例:

1
2
3
4
5
6
7
8
9
site_name: 文档中心
theme:
name: 'material'
palette:
primary: 'teal'
accent: 'teal'
font:
text: 'Roboto'
code: 'Roboto Mono'

常用命令

1
2
3
4
mkdocs new [dir-name] - Create a new project.
mkdocs serve - Start the live-reloading docs server.
mkdocs build - Build the documentation site.
mkdocs help - Print this help message.

项目结构

1
2
3
4
mkdocs.yml    # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.

另外几种文档记录方式

  • gitbook
  • wiki
  • docusaurus
  • MM-wiki

本文标题:网站文档mkdocs

文章作者:shuke

发布时间:2020年05月03日 - 11:05

最后更新:2020年05月03日 - 11:05

原始链接:https://shuke163.github.io/2020/05/03/%E7%BD%91%E7%AB%99%E6%96%87%E6%A1%A3mkdocs/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

-------------本文结束感谢您的阅读-------------

本文标题:网站文档mkdocs

文章作者:shuke

发布时间:2020年05月03日 - 11:05

最后更新:2020年05月03日 - 11:05

原始链接:https://shuke163.github.io/2020/05/03/%E7%BD%91%E7%AB%99%E6%96%87%E6%A1%A3mkdocs/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

0%