create "shuser" prompt
This commit is contained in:
parent
9724efa314
commit
61a7ea3599
16
plugins/shortcode-custom/Prismjsshuser.php
Normal file
16
plugins/shortcode-custom/Prismjsshuser.php
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?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) {
|
||||||
|
$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>';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
Loading…
Reference in New Issue
Block a user