我正在尝试使用mkdocs从标记生成嵌套有序列表,但没有成功。在md文件中,我有以下内容:
创建的网页显示:
我在某个地方看到需要在mkdocs.yml文件中添加markdown_extensions:下的行- def_list,但是它没有改变任何东西。
发布于 2022-03-28 22:52:10
您可以将material主题用于MkDocs。您可以从有序嵌套列表文档获得更多信息。在这种情况下
1. first
2. second
1. A
2. B
3. third将显示为:
1. first
2. second
a. A
b. B
3. thirdhttps://stackoverflow.com/questions/71015737
复制相似问题