Sphinx/DocUtils 创建自定义文档
我正在尝试使用 Sphinx 为我的每个方法创建一些 HTML div。
问题是,我想完全自定义 Sphinx 生成的代码。
我相信这样做需要创建一个自定义指令并告诉 Sphinx 如何解析它。
我该怎么做呢?
I'm trying to use Sphinx to create some HTML divs for each of my methods.
The problem is, I'd like to completely customize the code Sphinx generates.
I believe doing this would require creating a custom directive and telling Sphinx how to parse it.
How would I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望自定义生成的 HTML,请尝试修改 HTML 生成器。复制现有的 HTML 构建器并根据您的喜好对其进行自定义。 构建器文档也可能有帮助。
If you are are looking to customize the the HTML that is generated, try modifying the HTML builder. Make a copy of the existing HTML builder and customize it to your liking. The builder documentation may also help.