summaryrefslogtreecommitdiffstats
path: root/templates/html/htmllayout.tpl
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-11-06 13:36:37 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-11-06 13:36:37 (GMT)
commit9664e0b46ba516069d5fd740aac4ef4eb5f874cf (patch)
treeedba83155692849a0f16c4e7f6a6fd44cda3bc1d /templates/html/htmllayout.tpl
parent0a1a216ceed4be17ab3bf2a80be3be1bae21efeb (diff)
downloadDoxygen-9664e0b46ba516069d5fd740aac4ef4eb5f874cf.zip
Doxygen-9664e0b46ba516069d5fd740aac4ef4eb5f874cf.tar.gz
Doxygen-9664e0b46ba516069d5fd740aac4ef4eb5f874cf.tar.bz2
Better warning in case of `@form`
When having a problem like: ``` /** \file */ /** * The fie * * @form: the new format * @content: the content of the form * * Sets @form content to be @content. * * \f$ \alpha \f$ \f[ \beta \f] */ void fie(char *form, char *content); ``` we get warnings like: ``` .../aa.h:5: warning: Wrong formula id -1 .../aa.h:6: warning: Found unknown command '\content' .../aa.h:8: warning: Wrong formula id -1 .../aa.h:8: warning: Found unknown command '\content' ``` The `@form:` is in RST analogue to the doxygen `@param form` but not understood by doxygen. The result is that it is seen as an formula as doxygen translates the formula commands to `\form`. For `@content` is handled properly as this is not a doxygen command. In this patch a more unique name is chosen so these type of conflicts don't appear (that easy). The resulting, better, warnings are now: ``` .../aa.h:5: warning: Found unknown command '\form' .../aa.h:6: warning: Found unknown command '\content' .../aa.h:8: warning: Found unknown command '\form' .../aa.h:8: warning: Found unknown command '\content' ```
Diffstat (limited to 'templates/html/htmllayout.tpl')
0 files changed, 0 insertions, 0 deletions