From 70bf0c86cbf36c5982a7c281f1ea4f67c5a82724 Mon Sep 17 00:00:00 2001 From: Luca Heltai Date: Mon, 1 Mar 2021 19:10:04 +0100 Subject: [PATCH] Escape dollar signs. --- include/deal.II/grid/grid_in.h | 12 ++++++------ include/deal.II/grid/grid_out.h | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/include/deal.II/grid/grid_in.h b/include/deal.II/grid/grid_in.h index 465f786f0a..7f1b2eca72 100644 --- a/include/deal.II/grid/grid_in.h +++ b/include/deal.II/grid/grid_in.h @@ -539,26 +539,26 @@ public: * From the Gmsh documentation, the formats of the physical tags follows the * following conventions: * @code - * $PhysicalNames // same as MSH version 2 + * \$PhysicalNames // same as MSH version 2 * numPhysicalNames(ASCII int) * dimension(ASCII int) physicalTag(ASCII int) "name"(127 characters max) * ... - * $EndPhysicalNames + * \$EndPhysicalNames * @endcode * * For example, the following snippet of mesh file * @code * MeshFormat * 4.1 0 8 - * $EndMeshFormat - * $PhysicalNames + * \$EndMeshFormat + * \$PhysicalNames * 4 * 1 1 "ManifoldID:0" * 1 2 "BoundaryID: -1, ManifoldID: 1" * 2 3 "ManifoldID: 1" * 2 4 "MaterialID: 2, ManifoldID: 1" - * $EndPhysicalNames - * $Entities + * \$EndPhysicalNames + * \$Entities * ... * @endcode * diff --git a/include/deal.II/grid/grid_out.h b/include/deal.II/grid/grid_out.h index 09c9478178..7fef5a5ca9 100644 --- a/include/deal.II/grid/grid_out.h +++ b/include/deal.II/grid/grid_out.h @@ -1124,14 +1124,14 @@ public: * @code * MeshFormat * 4.1 0 8 - * $EndMeshFormat - * $PhysicalNames + * \$EndMeshFormat + * \$PhysicalNames * 3 * 1 1 "ManifoldID:0" * 1 2 "BoundaryID:-1, ManifoldID:1" * 2 3 "ManifoldID:1" - * $EndPhysicalNames - * $Entities + * \$EndPhysicalNames + * \$Entities * ... * @endcode * -- 2.39.5