Overrides OutputRules::escape
protected function escape($text, $attribute = FALSE) { $text = parent::escape($text, $attribute); if ($attribute) { $text = strtr($text, [ '<' => '<', '>' => '>', ]); } return $text; }