From d36e94d5abd133a53bd83d22a80a81ac6d378f4b Mon Sep 17 00:00:00 2001 From: albert-github Date: Tue, 18 Apr 2023 12:56:47 +0200 Subject: [PATCH] Incorrect HTML code in relation with \cgalAdvancedEnd In #5226 we already fixed a problem regarding the subtle interaction between the `cgaAdvancedEnd` command and table rows / columns. In this PR a subtle interaction between the `\cgalAdvancedEnd` and the `pre` command is solved. xmllint gave the following type warning: ``` Periodic_2_triangulation_2/classCGAL_1_1Periodic__2__triangulation__2.html:1418: parser error : Opening and ending tag mismatch: dd line 1418 and div "This is an advancedSurface_mesh_deformation function.">is_triangulation_in_1_sheet() ``` this type of warning appeared for the packages: - Periodic_2_triangulation_2 - Point_set_3 - TDS_3 - Triangulation - Triangulation_2 for the package Surface_mesh_skeletonization we again saw a warning like: ``` Surface_mesh_skeletonization/classCGAL_1_1Mean__curvature__flow__skeletonization.html:519: parser error : Opening and ending tag mismatch: td line 519 and div raph_traits<TriangleMesh>::vertex_descriptor as value type. ``` this is also fixed with this PR. --- Documentation/doc/resources/1.8.20/BaseDoxyfile.in | 2 +- Documentation/doc/resources/1.9.3/BaseDoxyfile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/doc/resources/1.8.20/BaseDoxyfile.in b/Documentation/doc/resources/1.8.20/BaseDoxyfile.in index f950a6836db..bc0ca527ff2 100644 --- a/Documentation/doc/resources/1.8.20/BaseDoxyfile.in +++ b/Documentation/doc/resources/1.8.20/BaseDoxyfile.in @@ -329,7 +329,7 @@ ALIASES = "cgal=%CGAL" \ "cgalDebugEnd=\htmlonly[block] \endhtmlonly" \ "cgalDebugFunction=This is a function for debugging purpose." \ "cgalAdvancedBegin=^^ \htmlonly[block]
Advanced
\endhtmlonly ^^" \ - "cgalAdvancedEnd=\noop ^^ \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." \ diff --git a/Documentation/doc/resources/1.9.3/BaseDoxyfile.in b/Documentation/doc/resources/1.9.3/BaseDoxyfile.in index 3fcdb56be68..21d24dd6ecd 100644 --- a/Documentation/doc/resources/1.9.3/BaseDoxyfile.in +++ b/Documentation/doc/resources/1.9.3/BaseDoxyfile.in @@ -336,7 +336,7 @@ ALIASES = "cgal=%CGAL" \ "cgalDebugEnd=\htmlonly[block] \endhtmlonly" \ "cgalDebugFunction=This is a function for debugging purpose." \ "cgalAdvancedBegin=^^ \htmlonly[block]
Advanced
\endhtmlonly ^^" \ - "cgalAdvancedEnd=\noop ^^ \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." \