From 7165de75f86ce97edbda3b31b61d8972895c4e12 Mon Sep 17 00:00:00 2001 From: albert-github Date: Thu, 7 Feb 2019 16:51:52 +0100 Subject: issue #6828 Physical newlines (^^) in ALIASES configuration tags not working with sections, subsections, subsubsections and paragraphs Previous changes corrected use of _linebr, missed one so this was not handled properly. --- src/doxygen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 08d3bc7..da61796 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -10021,7 +10021,7 @@ static void escapeAliases() while ((in=value.find("^^",p))!=-1) { newValue+=value.mid(p,in-p); - newValue+="@_linebr"; + newValue+="\\\\_linebr"; p=in+2; } newValue+=value.mid(p,value.length()-p); -- cgit v0.12