diff --git a/src/Entity/Code.php b/src/Entity/Code.php deleted file mode 100644 index 6a4dad1..0000000 --- a/src/Entity/Code.php +++ /dev/null @@ -1,23 +0,0 @@ -[^`]+))?[`]{3}$/m', + $line->getData(), + $matches + ): + // Toggle escaped status + return $inline = true; + + // Multiline with optional alt support + case preg_match( + '/^[`]{3}\s*(?[^`]+)$/m', + $line->getData(), + $matches + ): + return true; + } + + return false; + } +} \ No newline at end of file