2023-06-02 17:20:38 +02:00
|
|
|
<?php
|
|
|
|
namespace Grav\Plugin\Shortcodes;
|
|
|
|
|
|
|
|
use Thunder\Shortcode\Shortcode\ShortcodeInterface;
|
|
|
|
|
|
|
|
class Prismjsshuser extends Shortcode
|
|
|
|
{
|
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
$this->shortcode->getRawHandlers()->add('shuser', function(ShortcodeInterface $sc) {
|
2023-06-02 17:50:50 +02:00
|
|
|
$content = preg_replace('/^```.*(\n)?$/m', '', $sc->getContent());
|
|
|
|
$content = trim($content);
|
2023-06-02 17:20:38 +02:00
|
|
|
return '<pre class="command-line language-sh" data-prompt="$" data-continuation-str="\" tabindex="0"><code class="language-sh">'.$content.'</code></pre>';
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|