From 8cc682ca34e8a578a19ad3cd74db025a1289697b Mon Sep 17 00:00:00 2001 From: guido Date: Wed, 24 Feb 1999 12:34:04 +0000 Subject: [PATCH] Escaping of > and < removed git-svn-id: https://svn.dealii.org/trunk@889 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/auto/scripts/kdoc/kdocHTML.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/deal.II/doc/auto/scripts/kdoc/kdocHTML.pm b/deal.II/doc/auto/scripts/kdoc/kdocHTML.pm index ae7c8f9057..b8f4595333 100644 --- a/deal.II/doc/auto/scripts/kdoc/kdocHTML.pm +++ b/deal.II/doc/auto/scripts/kdoc/kdocHTML.pm @@ -204,8 +204,8 @@ sub makeReferencedText $t =~ s/$pat/$repl/; } - $t =~ s//>/g; +# $t =~ s//>/g; $t =~ s/<\/p><p>/<\/p>

/g; $t =~ s/\#([^\#]*)\#/$1<\/CODE>/g; $t =~ s/\\begin\{verbatim\}/

/g;
@@ -218,6 +218,15 @@ sub makeReferencedText
     $t =~ s/\\subsection\{([^}]*)\}/

$1<\/H4>/g; $t =~ s/\\subsubsection\{([^}]*)\}/

$1<\/H5>/g; +#while($t =~ m/(\#([^\#]*)\#)/) +#{ +# $full = $1; +# $text = $2; +# $text =~ s//>/g; +# $text =~ s/\&/&/g; +# $t =~ s/$full/$text<\/CODE>/; +#} return $t; } -- 2.39.5