diff --git a/ecrire/inc/texte_mini.php b/ecrire/inc/texte_mini.php index c580c5d869e55bdbe04b5c201537ab5ef3cfa999..b030a7c54874ed03c207cc4bba071e4d81e6e8b8 100644 --- a/ecrire/inc/texte_mini.php +++ b/ecrire/inc/texte_mini.php @@ -72,6 +72,9 @@ function spip_balisage_code(string $corps, bool $bloc = false, string $attributs if ($langage) { $class .= " language-$langage"; } + if ($attributs) { + $attributs = " " . trim($attributs); + } if ($bloc) { $html = "<div class=\"precode\">" . "<pre class=\"$class\" dir=\"ltr\" style=\"text-align: left;\"$attributs>" @@ -84,7 +87,7 @@ function spip_balisage_code(string $corps, bool $bloc = false, string $attributs else { $echap = str_replace("\t", " ", $echap); $echap = str_replace(" ", " ", $echap); - $html = "<code class=\"$class\" dir=\"ltr\" $attributs>" . $echap . '</code>'; + $html = "<code class=\"$class\" dir=\"ltr\"$attributs>" . $echap . '</code>'; } return $html;