From: <gr...@us...> - 2025-07-11 12:41:42
|
Revision: 10184 http://sourceforge.net/p/docutils/code/10184 Author: grubert Date: 2025-07-11 12:41:40 +0000 (Fri, 11 Jul 2025) Log Message: ----------- Fix: documentation #506 backslash is not needed for backticks in backtics :-) Modified Paths: -------------- trunk/docutils/docs/ref/rst/restructuredtext.rst Modified: trunk/docutils/docs/ref/rst/restructuredtext.rst =================================================================== --- trunk/docutils/docs/ref/rst/restructuredtext.rst 2025-06-24 07:23:08 UTC (rev 10183) +++ trunk/docutils/docs/ref/rst/restructuredtext.rst 2025-07-11 12:41:40 UTC (rev 10184) @@ -2522,7 +2522,7 @@ - `inline internal targets`_: ``_``` and ````` - `footnote references`_: ``[`` and ``]_`` -- `hyperlink references`_: ````` and ``\`_`` (phrases), or just a +- `hyperlink references`_: ````` and ```_`` (phrases), or just a trailing ``_`` (single words) `Standalone hyperlinks`_ are recognized implicitly, and use no extra @@ -2650,7 +2650,7 @@ - Backquotes: `Inline literals`_ (``````), `inline internal targets`_ (leading ``_```, trailing `````), are mutually independent, and are recognized before phrase `hyperlink references`_ (leading `````, - trailing ``\`_``) and `interpreted text`_ (`````). + trailing ```_``) and `interpreted text`_ (`````). - Trailing underscores: Footnote references (``[`` + label + ``]_``) and simple `hyperlink references`_ (name + trailing ``_``) are mutually @@ -2841,9 +2841,9 @@ reference type name start end =================== ========== ======== ========= named simple_ none ``_`` - .. phrase_ `````\ ``\`_`` + .. phrase_ `````\ ```_`` anonymous_ simple none ``__`` - .. phrase `````\ ``\`__`` + .. phrase `````\ ```__`` =================== ========== ======== ========= :See also: `hyperlink targets`_ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |