TEST 1
 All Pages
Code rendering

Markdown - code spans

The following `#define' will cause a warning

warning: explicit link request to 'define' could not be resolved

Adding a back slash does not solve the problem and the back-slash is output too: \#define. The warning is still raised.

Comment
It would be nice to have Doxygen treat the code inside `` as it does for code blocks.

Code block

The following code misses the value assigned to GEN_PURPOSE_IR_map

/* The -1 entry must be put as last to avoid the following case: ... */
#define GEN_PURPOSE_IR_map

To have proper result, use \include instead of the same snippet, as follow

/* The -1 entry must be put as last to avoid the following case: ... */
#define GEN_PURPOSE_IR_map MAP_ioio5(\
0, 20e-3 ,\
1, 200e-3 ,\
2, 1.0 ,\
3, 4.0 ,\
-1, TIMEBASE_ATOMIC )
Comment
The result is supposed to be the same, but it is not!

Fenced code blocks

~~~~~{.c} /* The -1 entry must be put as last to avoid the following case: ...