laravel-shortcodes
laravel-shortcodes copied to clipboard
How can we add multiple classes in shortcode ?
I've registered this
Shortcode::register('colmd3', 'App\Shortcodes\ColumnShortcode@colmd3'); into my ShortcodesServiceProvider
while applying it's working fine
[colmd3 class="col-sm-4"]
[/colmd3]
but extra class is not applying
[colmd3 class="col-sm-4 text-center"]
[/colmd3]
This is my ColumnShortcode provider
class ColumnShortcode
{
public function colmd3($shortcode, $content)
{
return sprintf('<div class = "col-md-3 %s">%s</div>', $shortcode->class, $content);
}
}
Please help, Thank you
update src/Compilers/ShortcodeCompiler.php class "parseAttributes" method
$text = htmlspecialchars_decode($text, ENT_QUOTES);