From a9c52191c80e6542b215be7547dcd2adc5db3ff7 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 15 Jun 2015 09:17:50 -0500 Subject: [PATCH] Improve ASCII art. The original rendering eats the leading spaces, see https://www.dealii.org/developer/doxygen/deal.II/step_42.html#PlasticityContactProblemmake_grid The patch adds something at the front that ensures that this doesn't happen. It's not pretty, but it works. --- examples/step-42/step-42.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/step-42/step-42.cc b/examples/step-42/step-42.cc index 1453429020..9b276315d0 100644 --- a/examples/step-42/step-42.cc +++ b/examples/step-42/step-42.cc @@ -918,13 +918,13 @@ namespace Step42 // Alternatively, create a hypercube mesh. After creating it, // assign boundary indicators as follows: // @code - // _______ - // / 1 /| - // /______ / | - // | | 8| - // | 8 | / - // |_______|/ - // 6 + // > _______ + // > / 1 /| + // > /______ / | + // > | | 8| + // > | 8 | / + // > |_______|/ + // > 6 // @endcode // In other words, the boundary indicators of the sides of the cube are 8. // The boundary indicator of the bottom is 6 and the top has indicator 1. -- 2.39.5