From c8f664268a94f603b4fa6fa02df6f28e680c04bd Mon Sep 17 00:00:00 2001 From: Christian Engwer <christi@dune-project.org> Date: Fri, 5 Oct 2012 09:12:05 +0000 Subject: [PATCH] [doc] fix \code blocks in parametertreeparser.hh [[Imported from SVN: r7022]] --- dune/common/parametertreeparser.hh | 57 +++++++++++++++--------------- 1 file changed, 28 insertions(+), 29 deletions(-) diff --git a/dune/common/parametertreeparser.hh b/dune/common/parametertreeparser.hh index 253cd6199..bfa84ff68 100644 --- a/dune/common/parametertreeparser.hh +++ b/dune/common/parametertreeparser.hh @@ -24,45 +24,44 @@ namespace Dune { static std::string ltrim(const std::string& s); static std::string rtrim(const std::string& s); - public: /** @name Parsing methods for the INITree file format * * INITree files should look like this * \verbatim - # this file configures fruit colors in fruitsalad - - - ##these are no fruit but could also appear in fruit salad - honeydewmelon = yellow - watermelon = green - - fruit.tropicalfruit.orange = orange - - [fruit] - strawberry = red - pomegranate = red - - [fruit.pipfruit] - apple = green/red/yellow - pear = green - - [fruit.stonefruit] - cherry = red - plum = purple - - \endverbatim + * # this file configures fruit colors in fruitsalad + * + * + * #these are no fruit but could also appear in fruit salad + * honeydewmelon = yellow + * watermelon = green + * + * fruit.tropicalfruit.orange = orange + * + * [fruit] + * strawberry = red + * pomegranate = red + * + * [fruit.pipfruit] + * apple = green/red/yellow + * pear = green + * + * [fruit.stonefruit] + * cherry = red + * plum = purple + * + * \endverbatim * * * If a '[prefix]' statement appears all following entries use this prefix * until the next '[prefix]' statement. Fruitsalads for example contain: - \verbatim - honeydewmelon = yellow - fruit.tropicalfruit.orange = orange - fruit.pipfruit.apple = green/red/yellow - fruit.stonefruit.cherry = red - \endverbatim + * \verbatim + * honeydewmelon = yellow + * fruit.tropicalfruit.orange = orange + * fruit.pipfruit.apple = green/red/yellow + * fruit.stonefruit.cherry = red + * \endverbatim * * All keys with a common 'prefix.' belong to the same substructure called * 'prefix'. Leading and trailing spaces and tabs are removed from the -- GitLab