We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c4dd60 commit b7b3dedCopy full SHA for b7b3ded
src/Renderers/SpanNodeRenderer.php
@@ -67,7 +67,7 @@ public function literal(string $text): string
67
// some browsers can't break long <code> properly, so we inject a
68
// `<wbr>` (word-break HTML tag) after some characters to help break those
69
// We only do this for very long <code> (4 or more \\) to not break short
70
- // and common `<code> such as App\Entity\Something
+ // and common `<code>` such as App\Entity\Something
71
if (substr_count($text, '\\') >= 4) {
72
// breaking before the backslask is what Firefox browser does
73
$text = str_replace('\\', '<wbr>\\', $text);
0 commit comments