Skip to content

Commit

Permalink
Escape Greek characters as well when using latex_escape_all in Twig
Browse files Browse the repository at this point in the history
  • Loading branch information
bobvandevijver authored Apr 22, 2020
1 parent 977882e commit ed87108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Twig/BobVLatexExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function getName() {
* @return mixed
*/
public function latexEscapeAll($text) {
return $this->parser->parseText($text, false, true, true);
return $this->parser->parseText($text, false, true, true, true);
}

}

0 comments on commit ed87108

Please sign in to comment.