我想在ReStructuredText(ReST / RST)中创建一个表,其中的每一列都应呈现为inline literal /等宽字体。

我找不到一种方法来使内联文字跨越多行,在它们前面有文本,例如表格。

有没有办法设置表格以内联文字/等宽字体显示特定的列?如果不是,最佳做法是什么?

最佳答案

试试这个。

.. csv-table::
    :header: Header1, Header2, Header3

    A, B, "These lines appear as one line,
    even though they are written in two lines."
    C, D, "This is normal text. ``this is inline stuff that is very long and may wrap on multiple lines of text in a table cell, and it could look OK, but who knows?`` This is normal text again."


使用Alabaster主题产生此屏幕截图。

syntax - 在reStructuredText中,如何使表列具有等宽文本?-LMLPHP

您可能需要旋转主题的CSS才能使其正确。

关于syntax - 在reStructuredText中,如何使表列具有等宽文本?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47764763/

10-10 16:56