Günter Milde
Günter Milde
See https://github.com/sphinx-doc/sphinx/pull/13576#discussion_r2096624497 for an example of the confusion when the "rST primer" is used as primary information on reStructuredText.
> I have also been bitten by this before. I think "inline" is a misnomer here and the intention was to denote hyperlinks with [embedded URIs](https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#embedded-uris-and-aliases). It is a "commonmarkism"....
@AA-Turner: Thanks for the fix. Two issues remain: In #13424, the expectation is for "https://en.wikipedia.org/wiki/Antenna_(radio)" to be converted to a link including the closing parenthesis. According to the rST's spec,...
The changes are rather small, so it should be easy to do without PR. Currently I'm prioritizing the upcoming Docutils 0.22 release.
Docutils commit [r10176](https://sourceforge.net/p/docutils/code/10176/) changes the specification and implementation of [*named references with embedded URI or alias*](https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#embedded-uris-and-aliases) to create [**implicit** targets](https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#implicit-hyperlink-targets) instead of [**explicit** targets](https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#hyperlink-targets). Rationale: It seems, that up to...
The patch to future-proof the `rst_in.py` reStructured Text input converter: ~~~ diff --- /tmp/rst_in.py.bak 2025-05-07 21:43:33.229924365 +0200 +++ /tmp/rst_in.py 2025-05-07 21:47:23.746945103 +0200 @@ -582,7 +582,8 @@ return if refuri ==...
I don't want to create a PR. > Does this fix the issue? The suggested change is expected to solve point 2 of the issue: * adapt the `visit_reference()` function...
@UlrichB22 I managed to set up a "Test Wiki" and prepared a patch that solves both points of the issue. This is now PR [#1921](https://github.com/moinwiki/moin/pull/1921). The following code was used...
Patch #1935 only fixed the "Wiki links". The fix for internal cross-links to section headings is still missing (cf. the example in https://github.com/moinwiki/moin/issues/1680#issuecomment-2895130846). I'll prepare a new PR.
Still missing * inline internal targets * IDs of elements specified via the ["names" directive option](https://docutils.sourceforge.io/docs/ref/rst/directives.html#name) ~~~ Paragraph with _`inline target`. .. note:: :name: my note Admonitions can be targets...