雪花石膏如何使用固定字体呈现参数

时间:2019-11-20 15:49:46

标签: python python-sphinx autodoc

编辑#1

取得了一些进展,但仍然没有实现: 我通过像这样调整custom.css来使用单声道字体:

em.property{
  font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 
'Bitstream Vera Sans Mono', monospace;
}

我现在确实有一个等宽字体,但是三引号仍然很乱:

enter image description here

初始问题:

我使用autodoc(目前为Alabaster主题,但可以更改)来生成项目的文档。我的类参数的呈现存在问题。

来源:

class CBUSH(SimpleCard):
"""
Generalized Spring-and-Damper Connection
Defines a generalized spring-and-damper structural element that may be nonlinear
or frequency dependent.

ref: NX Nastran 12 Quick Reference Guide 11-39 (p.1399)
"""

TABLE = """
| 1     | 2   | 3    | 4  | 5  | 6     | 7  | 8  | 9   | 10 |
|-------+-----+------+----+----+-------+----+----+-----+----|
| CBUSH | EID | PID  | GA | GB | GO/X1 | X2 | X3 | CID |    |
|       | S   | OCID | S1 | S2 | S3    |    |    |     |    |
"""
GIDS_PATTERN = re.compile('^G[A|B]$')
DEFAULTS = {'S': 0.5, 'OCID': -1}

呈现为:

enter image description here

所以,问题是:如何将参数描述字体设置为等宽字体?

从代码源中,我看到用于渲染这些项目的平台是<code class="descname">TABLE</code><em class="property">,所以我尝试使用以下代码创建static/custom.css

tt.property{
  font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
}

但到目前为止,没有任何效果。

0 个答案:

没有答案