Hello,
I have some aliases in my Doxyfile that look like so:
ALIASES = "laws=\par Laws\n\parblock"
ALIASES += "law=\n\par\n"
ALIASES += "endlaws=\endparblock"
An example of how these are used:
* \laws
* \law `p + q == q + p`
* \law `p + (q + r) == (p + q) + r`
* \law `p + 0 == p`
* \endlaws
In Doxygen 1.8.13, this definition worked fine; however, in 1.8.14, I
get the following errors:
warning: Illegal command parblock as part of a title section
warning: Illegal command n as part of a title section
warning: Illegal command n as part of a title section
warning: Illegal command n as part of a title section
Furthermore, the rendering is different -- in 1.8.14, all the text is
bold, as if the paragraph title never ends.
Is there a different way that I should be doing this?
Thanks!
--Nathan
|