16 lines
504 B
PHP
16 lines
504 B
PHP
<?php
|
|
namespace Grav\Plugin\Shortcodes;
|
|
|
|
use Thunder\Shortcode\Shortcode\ShortcodeInterface;
|
|
|
|
class CustomPrismjs extends Shortcode
|
|
{
|
|
public function init()
|
|
{
|
|
$this->shortcode->getRawHandlers()->add('rootsh', function(ShortcodeInterface $sc) {
|
|
$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>';
|
|
});
|
|
}
|
|
}
|
|
?>
|