Open schlatterbeck opened 1 year ago
Looks like this is caused by
ALIASES = "rst=\verbatim embed:rst:leading-asterisk"
This has the effect that in breathe/renderer/sphinxrenderer.py around line 1694 the first asterisk in each line is removed. A questionable concept, a better implementation would only remove the first asterisk after leading whitespace? I was successful by just redefining this alias to
ALIASES = "rst=\verbatim embed:rst"
by overriding this in my conf.py.
I have the following in a doxygen XML:
When converting this to a man page (or also when creating html) the first '*' in every line is missing:
Note how the '*' before ctx, low and in malloc are missing.
I don't know if this is a bug in exhale or if the problem is occurring later in the toolchain. It seems that Doxygen is not at fault though.