2023-06-02 15:14:26 +02:00
|
|
|
<?php
|
|
|
|
namespace Grav\Plugin\Shortcodes;
|
|
|
|
|
|
|
|
use Thunder\Shortcode\Shortcode\ShortcodeInterface;
|
|
|
|
|
2023-06-02 17:20:27 +02:00
|
|
|
class Prismjsshroot extends Shortcode
|
2023-06-02 15:14:26 +02:00
|
|
|
{
|
|
|
|
public function init()
|
|
|
|
{
|
2023-06-02 15:38:12 +02:00
|
|
|
$this->shortcode->getRawHandlers()->add('shroot', function(ShortcodeInterface $sc) {
|
2023-06-02 17:46:10 +02:00
|
|
|
$content = preg_replace('/^```.*(\n)?$/m', '', $sc->getContent());
|
|
|
|
$content = trim($content);
|
2023-07-12 20:01:56 +02:00
|
|
|
return '<pre class="command-line language-sh" data-prompt="#" data-continuation-str="\" data-filter-output="(out)" tabindex="0"><code class="language-sh">'.$content.'</code></pre>';
|
2023-06-02 15:14:26 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2023-06-02 17:20:27 +02:00
|
|
|
?>
|