wiki-grav/plugins/shortcode-custom/CustomPrismjs.php

16 lines
501 B
PHP
Raw Normal View History

2023-06-02 15:14:26 +02:00
<?php
namespace Grav\Plugin\Shortcodes;
use Thunder\Shortcode\Shortcode\ShortcodeInterface;
class CustomPrismjs extends Shortcode
{
public function init()
{
2023-06-02 15:24:52 +02:00
$this->shortcode->getHandlers()->add('rootsh', function(ShortcodeInterface $sc) {
$content = rtrim(ltrim($sc->getContent()))
return '<pre class="command-line language-sh" data-prompt="#" data-continuation-str="\" tabindex="0"><code class="language-sh">'.$content.'</code></pre>';
2023-06-02 15:14:26 +02:00
});
}
}
?>