From: Luca Heltai Date: Mon, 1 Mar 2021 18:10:04 +0000 (+0100) Subject: Escape dollar signs. X-Git-Tag: v9.3.0-rc1~394^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70bf0c86cbf36c5982a7c281f1ea4f67c5a82724;p=dealii.git Escape dollar signs. --- 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 *