python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Doxygen not rendering MathJax formulas in markdown file
As I understood, I should be able to write formulas with MathJax in the README.md if I create the HTML output of doxygen.
I set the following options for MathJax:
USE_MATHJAX = YES
MATHJAX_FORMA...

Varrick
Votes: 0
Answers: 1
What kind of type should r-value reference parameter be in doxygen? [in] or [in, out]?
/**
* @param[?] u
*/
T func(U&& u);
The parameter u may be modified by func, while the modified status should be ignored seeing it's an r-value reference.
I haven't found any information ab...
zjyhjqs
Votes: 0
Answers: 1