Günter Milde
Günter Milde
> > So a quick resolve would be `s/pass/return` but I would prefer confirmation by some competent maintainer. > > I wrote that prior to having seen [@gmilde](https://github.com/gmilde) suggestion to...
> > AFAIK, the correct way would be to ignore all indirect targets [...] > > [...] If I do that, and using 0.21.2 I get 1 LaTeX failed test:...
> To recap simply doing `s/pass/return/` passes all tests, but going more radical and ignoring all nodes having a `refid` is not a possibility for us. I disagree: given the...
@jfbu Looking at https://github.com/sphinx-doc/sphinx/blob/master/sphinx/writers/latex.py line 1852 and following: if node.get('ismod', False): # Detect if the previous nodes are label targets. If so, remove # the refid thereof from node['ids'] to...
This is a known and documented limitation of the reStructuredText format. > Tabs will be converted to spaces. Tab stops are at every 8th column (processing systems may make this...
> I read the linked-to documentation and I can't tell if using `-1`, `-4` or `-8` has any significance? No, all negative values just keep the TAB as TAB.
> It comes from the node ID generation rule of docutils; the core library of Sphinx. It was defined to support many kinds of formats. The rationale and details of...
The workaround with an [id-prefix](https://docutils.sourceforge.io/docs/user/config.html#id-prefix) can be used with current Docutils and Sphinx: Example In `docutils.conf`, set: ~~~ [parsers] id_prefix: black: ~~~ Then, the "self-link" for the heading `25.1.0` becomes...
Should we consider adding a new "language" attribute to all [Doctuils Doctree](https://docutils.sourceforge.io/docs/ref/doctree.html#contents) elements?
The simplest solution would be to define stubs: ~~~ def visit_acronym(self, node): pass def depart_acronym(self, node): pass ~~~ This would prevent aborting the LaTeX generation and simply write the ``...