change shortcode name

This commit is contained in:
RealStickman 2023-06-02 13:19:36 +00:00
parent ec7c1d8591
commit ec04d4e61d

View File

@ -7,7 +7,7 @@ class CustomPrismjs extends Shortcode
{ {
public function init() public function init()
{ {
$this->shortcode->getRawHandlers()->add('sh-root', function(ShortcodeInterface $sc) { $this->shortcode->getRawHandlers()->add('rootsh', function(ShortcodeInterface $sc) {
return '<pre class="command-line language-sh" data-prompt="#" data-continuation-str="\" tabindex="0"><code class="language-sh">'.$sc->getContent().'</code></pre>'; return '<pre class="command-line language-sh" data-prompt="#" data-continuation-str="\" tabindex="0"><code class="language-sh">'.$sc->getContent().'</code></pre>';
}); });
} }