Sphinx cheat sheet
Here is a quick and dirty cheat sheet for some common stuff you want to do in sphinx and ReST. 文本格式化 名称 代码 示例 斜体 *斜体* 斜体 粗休 **粗体** 粗体 原文 `原文` 原文 源代码 末尾使用 :: 符号,则下面的内容就显示为源代码,源代码需要缩进,例如: You can represent code blocks fairly easily:: import numpy as np x = np.random.rand(12) 以上代码显示效果如下: You can represent code blocks fairly easily: import numpy as np x = np.random.rand(12) 也可以直接从文件引入代码。例如从exts/chinese_search.py 引入代码可以使用如下命令: .. literalinclude:: exts/chinese_search....