diff options
author | DuyDang <duy.dang.yw@renesas.com> | 2021-01-26 11:18:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-26 11:18:39 (GMT) |
commit | ab9361d55cab465d57b4f8b1d31c7681907f79d6 (patch) | |
tree | 556f1a80f24689cdb853794d42cb18f8b96bfbec /src | |
parent | 6dfd523718e5879b9da5b95134572c9326b0dc80 (diff) | |
download | Doxygen-ab9361d55cab465d57b4f8b1d31c7681907f79d6.zip Doxygen-ab9361d55cab465d57b4f8b1d31c7681907f79d6.tar.gz Doxygen-ab9361d55cab465d57b4f8b1d31c7681907f79d6.tar.bz2 |
issue #8160 Use ^^ instead of \n in ALIASES ...
document
Fix the document.
Diffstat (limited to 'src')
-rw-r--r-- | src/config.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.xml b/src/config.xml index e25c94e..d9b29aa 100644 --- a/src/config.xml +++ b/src/config.xml @@ -558,12 +558,12 @@ Go to the <a href="commands.html">next</a> section or return to the \endverbatim For example adding \verbatim - "sideeffect=@par Side Effects:\n" + "sideeffect=@par Side Effects:^^" \endverbatim will allow you to put the command \c \\sideeffect (or \c \@sideeffect) in the documentation, which will result in a user-defined paragraph with heading "Side Effects:". - You can put \ref cmdn "\\n"'s in the value part of an alias to insert newlines + Note that you cannot put \ref cmdn "\\n"'s in the value part of an alias to insert newlines (in the resulting output). You can put `^^` in the value part of an alias to insert a newline as if a physical newline was in the original file. |