Markdown in Doxygen with @file -
i'm trying document source code templates doxygen , markdown using fenced code blocks
~~~cpp /// @file filename.h ~~~ but doxygen seems process @file command though verbatim code results in warning
warning: name `filename.h' supplied second argument in \file statement not input file what doing wrong?
you have escape "@" sign. use \@file instead.
Comments
Post a Comment