Enable stripping of markdown code blocks for shuser

This commit is contained in:
RealStickman 2023-06-02 17:50:50 +02:00
parent d2a7113cae
commit d7fa633734

View File

@ -8,7 +8,8 @@ class Prismjsshuser extends Shortcode
public function init() public function init()
{ {
$this->shortcode->getRawHandlers()->add('shuser', function(ShortcodeInterface $sc) { $this->shortcode->getRawHandlers()->add('shuser', function(ShortcodeInterface $sc) {
$content = trim($sc->getContent(), "\n "); $content = preg_replace('/^```.*(\n)?$/m', '', $sc->getContent());
$content = trim($content);
return '<pre class="command-line language-sh" data-prompt="$" data-continuation-str="\" tabindex="0"><code class="language-sh">'.$content.'</code></pre>'; return '<pre class="command-line language-sh" data-prompt="$" data-continuation-str="\" tabindex="0"><code class="language-sh">'.$content.'</code></pre>';
}); });
} }