I have the following markdown snippet in a markdown file in my documentation:
```cpp
/**
* Input Description:
*
* @depth_test: true
* @topology: line list
* @line_width: <float value>
*/
```
The `Input Description:` header is necesary and it is case sensitive. Also, there can only be one such comment per shader group and it must be put on the vertex shader of that group.
The valid values for `@topology:` are:
This is how it's formatted in a regular markdown explorer:
This is how it comes out in Doxygen:
The documentation: https://www.doxygen.nl/manual/markdown.html#md_codeblock Says code can be formatted by indenting it by at least 4 spaces (and indeed this does "work" except there's no language specific syntax highlighting.)
I guess I can live with that, but it also explicitly says code spans are supported and the code spans are not being formatted properly.
Is it possible to get syntax highlighitng for code blocks in doxygen? How do I fix the code spans?


