Revision 555c7cc6
Von Moritz Bunkus vor fast 7 Jahren hinzugefügt
SL/Template/LaTeX.pm | ||
---|---|---|
123 | 123 |
// $formatters{ $self->{default_content_type} } |
124 | 124 |
// $formatters{ text }; |
125 | 125 |
|
126 |
$content =~ s{[^\p{Print}]|\p{Cf}}{}g; |
|
127 |
$variable =~ s{[^\p{Print}]|\p{Cf}}{}g; |
|
128 |
|
|
126 | 129 |
return $formatter->($self, $content, variable => $variable); |
127 | 130 |
} |
128 | 131 |
|
Auch abrufbar als: Unified diff
LaTeX-Druck: Unicode-Control-Zeichen und nicht druckbare Zeichen entfernen
Filtert z.B. das »bidirectional left-to-right«-Kontroll-Zeichen raus,
an dem sich LaTeX verschluckt.