From: guido Date: Wed, 24 Feb 1999 12:34:04 +0000 (+0000) Subject: Escaping of > and < removed X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8cc682ca34e8a578a19ad3cd74db025a1289697b;p=dealii-svn.git Escaping of > and < removed git-svn-id: https://svn.dealii.org/trunk@889 0785d39b-7218-0410-832d-ea1e28bc413d --- 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; }