重组文本/狮身人面像:显式水平 space
restructuredText / Sphinx: explicit horizontal space
如何在 Sphinx/reStructuredText 中明确插入水平间距?
原来的问题是我想让发声符号ُ出现在space上方,但它总是显示在下一个单词的首字母上方
假设是“U+064F : ARABIC DAMMA”,它似乎是一个组合字符,也就是说,if I read this correctly, that it cannot be displayed inline and separate from another character, unless you trick it out with a non-breaking space replacement. I grabbed an example from this answer.
this is |damma| |nbsp| damma
.. |damma| unicode:: U+064F .. ARABIC DAMMA
.. |nbsp| unicode:: U+00A0 .. NO-BREAK SPACE
我能够使用 .. code-block::
指令或作为单独的段落单独显示它。
.. code-block:: text
ُ
ُ
如何在 Sphinx/reStructuredText 中明确插入水平间距?
原来的问题是我想让发声符号ُ出现在space上方,但它总是显示在下一个单词的首字母上方
假设是“U+064F : ARABIC DAMMA”,它似乎是一个组合字符,也就是说,if I read this correctly, that it cannot be displayed inline and separate from another character, unless you trick it out with a non-breaking space replacement. I grabbed an example from this answer.
this is |damma| |nbsp| damma
.. |damma| unicode:: U+064F .. ARABIC DAMMA
.. |nbsp| unicode:: U+00A0 .. NO-BREAK SPACE
我能够使用 .. code-block::
指令或作为单独的段落单独显示它。
.. code-block:: text
ُ
ُ