/**
* @brief Foo function
*
* Call `bar(3)` before calling this function
*
*
* ```c
* bar(3);
* bar(3);
* ```
*
* @param[in] a Param description
*/
void foo(int a);
It would be really helpful if
`bar(3)`
and
were highlighted!
For example this is how the VSDoxyHighlighter extension for Visual Studio 2022 renders Doxygen comments (which still doesn't support colorization for the 3 backticks)
