From 92fdf79d5bd8c601d8e39b673c1a8436aef13e4e Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Fri, 30 Oct 2009 20:44:11 +0000 Subject: Fixes for TEX and RTF output of "add_paragraph". svn-id: r45549 --- tools/credits.pl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tools') diff --git a/tools/credits.pl b/tools/credits.pl index 3186347c68..5e4459903c 100755 --- a/tools/credits.pl +++ b/tools/credits.pl @@ -433,10 +433,12 @@ sub add_paragraph { print wrap($tab, $tab, html_entities_to_ascii($text))."\n"; print "\n"; } elsif ($mode eq "TEX") { + $text = html_entities_to_tex($text); print '\item' . "\n"; print $text; print "\n"; } elsif ($mode eq "RTF") { + $text = html_entities_to_rtf($text); # Center text print '\pard\qc' . "\n"; print "\\\n"; -- cgit v1.2.3