wiki-grav/plugins/shortcode-core/classes/shortcodes/UnderlineShortcode.php
2023-06-02 08:07:58 +02:00

14 lines
380 B
PHP

<?php
namespace Grav\Plugin\Shortcodes;
use Thunder\Shortcode\Shortcode\ShortcodeInterface;
class UnderlineShortcode extends Shortcode
{
public function init()
{
$this->shortcode->getHandlers()->add('u', static function(ShortcodeInterface $sc) {
return '<span style="text-decoration: underline;">' . $sc->getContent() . '</span>';
});
}
}