mark 简单输出以markdown格式格式化的文本。 安装 pip install git+https://github.com/holmescharles/pugmark 用法 假设您要创建一个markdown文件,以便在使用python时记录文本。 import pugmark mdfile = pugmark . MarkdownFile ( 'output.md' ) mdfile . head ( level = 1 , text = 'This is a heading.' ) mdfile . para ( 'This is a body. Here comes some code.' ) mdfile . code_block ( 'echo This is some code' , language = 'sh' ) mdfile . head ( level =