epydoc:固定宽度文本块

发布于 2024-09-14 17:54:39 字数 517 浏览 6 评论 0原文

我编写了一个依赖配置文件的软件组件。为了清楚起见,我想通过在相关类的文档字符串中添加示例文件来记录配置文件的结构。由于显而易见的原因,它应该以固定宽度字体显示。

我知道的唯一方法是在每行之前添加 >>> ,这很糟糕,因为 doctest 可能会认为这是一个 Python 代码段并失去理智。而且,它看起来真的很难看:

>>> [db]

>>> port = 5432

>>> name = adam_db

...

我真正想要的是:

[db]

端口=5432

名称=adam_db

...

采用固定宽度字体。

有什么想法吗?

谢谢,

亚当

I have written a software component that relies on a configuration file. For clarity, I want to document the structure of the configuration file by adding an example file in the docstring of the relevant class. For obvious reasons, it should appear in fixed-width font.

The only way I know is adding >>> before each line, which is bad because doctest might think this is a Python code segment and lose its wits. Moreover, it looks really ugly:

>>> [db]

>>> port = 5432

>>> name = adam_db

...

What I really want is:

[db]

port=5432

name=adam_db

...

In a fixed-width font.

Any ideas?

Thanks,

Adam

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小…楫夜泊 2024-09-21 17:54:39

也许您可以使用 文字块 选项。

Maybe you could use the Literal Block option.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文