Remove newlines from Doxyfile.user aliases

For some reason I started getting literal \n appearing in Doxygen-generated
help files. These are coming from newlines in aliases defined in
Doxyfile.user. These should be safe to remove because they are HTML-specific
and there is still whitespace before them. Remove these newlines.

This didn't reproduce on Linux; Doxygen is full of mysteries.
This commit is contained in:
ridiculousfish 2018-09-16 15:42:46 -07:00
parent 3ba74b3195
commit 62870abe34

View File

@ -235,9 +235,9 @@ ALIASES += "key{2}=<span class=\"key\"><em>\1</em><span>-</span><b>\2</b></span>
ALIASES += "key{3}=<span class=\"key\"><em>\1</em><span>-</span><b>\2</b></span>"
ALIASES += "cursor_key{2}=<span class=\"key\"><b>\1</b></span>"
ALIASES += "fish=\htmlonly[block] \n<pre class=\"fish\">"
ALIASES += "fish{1}=\htmlonly[block] \n<pre class=\"fish \1\">"
ALIASES += "endfish=</pre>\endhtmlonly \n"
ALIASES += "fish=\htmlonly[block] <pre class=\"fish\">"
ALIASES += "fish{1}=\htmlonly[block] <pre class=\"fish \1\">"
ALIASES += "endfish=</pre>\endhtmlonly "
ALIASES += "asis{1}=\1"
ALIASES += "outp{1}=<span class=\"output\">\1</span>"