Enable stripping of markdown code blocks for shuser
This commit is contained in:
parent
d2a7113cae
commit
d7fa633734
@ -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>';
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user