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:34:23 +02:00
|
|
|
$this->shortcode->getRawHandlers()->add('rootsh', function(ShortcodeInterface $sc) {
|
2023-06-02 15:33:33 +02:00
|
|
|
$content = trim($sc->getContent(), "\n ");
|
2023-06-02 15:29:03 +02:00
|
|
|
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
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|