This commit is contained in:
RealStickman 2023-06-02 13:33:33 +00:00
parent 183f8a7fd5
commit 98c6dfea84

View File

@ -8,7 +8,7 @@ class CustomPrismjs extends Shortcode
public function init() public function init()
{ {
$this->shortcode->getHandlers()->add('rootsh', function(ShortcodeInterface $sc) { $this->shortcode->getHandlers()->add('rootsh', function(ShortcodeInterface $sc) {
$content = rtrim(ltrim($sc->getContent())); $content = trim($sc->getContent(), "\n ");
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>';
}); });
} }