From c900353e9157d02d40786cbb992f0497e4e87cd6 Mon Sep 17 00:00:00 2001 From: albert-github Date: Mon, 30 Nov 2020 14:58:29 +0100 Subject: [PATCH] Incorrect HTML code in relation with \cgalAdvancedEnd Due to some subtle interactions between used doxygen commands and the defined `\cgalAdvancedEnd` incorrect HTML code is generated. This was shown by `xmllint (and some options) as ``` parser error : Opening and ending tag mismatch: div line ``` With the `\noop` "trick" this can here be overcome. The presented output though looked OK. --- Documentation/doc/resources/1.8.20/BaseDoxyfile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/doc/resources/1.8.20/BaseDoxyfile.in b/Documentation/doc/resources/1.8.20/BaseDoxyfile.in index 4277732eb19..6f92b307137 100644 --- a/Documentation/doc/resources/1.8.20/BaseDoxyfile.in +++ b/Documentation/doc/resources/1.8.20/BaseDoxyfile.in @@ -297,7 +297,7 @@ ALIASES = "sc{1}=\1 \endhtmlonly" \ "cgalDebugFunction=This is a function for debugging purpose." \ "cgalAdvancedBegin=^^ \htmlonly[block]
Advanced
\endhtmlonly ^^" \ - "cgalAdvancedEnd=^^ \htmlonly[block]
\endhtmlonly" \ + "cgalAdvancedEnd=\noop ^^ \htmlonly[block] \endhtmlonly" \ "cgalAdvancedFunction=This is an advanced function." \ "cgalAdvancedClass=This is an advanced class." \ "cgalAdvancedType=This is an advanced type." \