如何在reStructuredText中加下划线?

Ale*_*tov 20 restructuredtext

当然,在网络上,下划线表示超链接,但是如果我需要下划线而不是超链接怎么办?

goz*_*lli 31

在这里问了一个类似的问题.试试这样:

.. role:: underline
    :class: underline
Run Code Online (Sandbox Code Playgroud)

在文档中,这可以应用如下:

:underline:`This text is underlined`
Run Code Online (Sandbox Code Playgroud)

在您的css文件中,您可以:

.underline {
  text-decoration: underline;
}
Run Code Online (Sandbox Code Playgroud)

这应该适用于HTML输出.但是,强调是故意不是ReST规范的一部分.看到这个链接.

  • 虽然我知道“_”在 python 中不利于下划线,但 David Ascher(在链接中)只是写了一些废话。“没有排版良好的书使用下划线”?谁在乎经典排版中是否使用下划线来指示斜体?我关心古埃及人如何使用可能看起来像路标的东西吗?不。因为我们已经远远超过了这一点,并且该标志已经摆脱了旧的含义……例如,在匈牙利学校中,下划线经常用于指示作业结果。它也来自手写文本。 (3认同)