From 0902d6e76f71f100bc2ac43f90ff34c8de3a1244 Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 7 May 2008 14:44:01 +0000 Subject: [PATCH] Don't use escape signs in the TOC. git-svn-id: https://svn.dealii.org/trunk@16046 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/doxygen/tutorial/intro2toc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/deal.II/doc/doxygen/tutorial/intro2toc b/deal.II/doc/doxygen/tutorial/intro2toc index 2330a29d60..3f6b340f50 100644 --- a/deal.II/doc/doxygen/tutorial/intro2toc +++ b/deal.II/doc/doxygen/tutorial/intro2toc @@ -2,7 +2,7 @@ # $Id: intro2toc 14782 2007-06-15 16:37:12Z kanschat $ # Version: $Name$ # -# Copyright (C) 2006, 2007 by the deal.II authors +# Copyright (C) 2006, 2007, 2008 by the deal.II authors # # This file is subject to QPL and may not be distributed # without copyright and license information. Please refer @@ -50,6 +50,13 @@ while (<>) { # replace double dashes in comments by — $text =~ s!--!—!g; + # we sometimes escape words with % (as in "%Boundary + # conditions") because doxygen would otherwise link the word + # to a class name. This isn't necessary in the index because + # the text already appears in a hyperref, so get rid of the + # percent sign + $text =~ s!\%!!g; + print "
  • $text\n"; $level = $newlevel; -- 2.39.5