Jakob Lykke Andersen
Jakob Lykke Andersen
I think the problem is that Breathe ends up with giving Sphinx the equivalent of ```rst .. cpp:type:: void *() TestTypedefFunc (long long, double, int *, void *) ``` instead...
How about the following solution? 1. Breathe annotates the symbols created by the Sphinx C++ domain with additional data (not sure how difficult this is). 2. Sphinx exposes the symbol...
You need to have ``sphinx_csharp`` as an extension as well. The C# language is not supported by Sphinx core, so you need an extra package for it. We should probably...
> I don't know the details of this algorithm -- do we only have to check if one graph is filtered, and not the other one? Both graphs can be...
I'm not familiar with building on Windows, though if it works with GCC and Clang it could be a bug in the MS compiler. For those that may be able...
Thanks for making the test and merging!
> Being a directive shouldn't `currentmodule` also have an empty line and one level of nesting? Like this: The ``currentmodule`` has no content, but simply sets the module. However, if...
A core problem is the use of `` domain.get_objects()``. As alluded to in https://github.com/orgs/sphinx-doc/discussions/12152#discussioncomment-8877586 there is an inherent problem in intersphinx in that it assumes in knows how to write...
It is great to get overload support! Perhaps I missed it in one of the other issues/PRs but is it correctly understood that only ```rst .. function:: my_bytes(n: int) my_bytes(s:...
Ah, I see. I suggest to add a note in the Python domain documentation (not sure what the best way to write it is currently). Indeed the ``:no-index:`` makes the...