python-3.x MKDocs无法生成文档

3pmvbmvn  于 2023-01-22  发布在  Python
关注(0)|答案(1)|浏览(231)

我将使用MKDocs来制作文档,但它说:

Error: MkDocs encountered an error parsing the configuration file: mapping values are not allowed here
  in "/home/phao/桌面/python/Bayesian/mkdocs.yml", line 4, column 15

我在2022年10月23日的Commits中推送了github commit e8221fc1f0402834b6db92280e67e9fcac4a2b10中的内容,怎么才能完成?为什么失败?
另外,这是/home/phao/桌面/python/Bayesian/mkdocs.yml

site_name: Bayesian v0.1 Documentation
plugins:
  - mkdocstrings
      handlers:
          python:
            setup_commands:
              - import sys
              - sys.path.insert(0, "..")

this is the issue in Github

xv8emn3q

xv8emn3q1#

这是一个yaml格式错误。请更正格式如下:

site_name: Bayesian v0.1 Documentation
plugins:
  - mkdocstrings:
      handlers:
          python:
            setup_commands:
              - import sys
              - sys.path.insert(0, "..")

相关问题