laravel-shortcodes
laravel-shortcodes copied to clipboard
Nested same name tag shortcodes
Hi, i have a problem with nested same name tag shortcode.
Example:
{!! shortcodes('[div class="row"][div class="col-md-6"]Column Left[/div][div class="col-md-6"]Column Right[/div][/div]') !!}
Output:
Inspect element:
Register shortcode:
public function render($content)
{
$this->attributes = array_merge($this->attributes, $this->atts);
return '<div ' . \HTML::attributes($this->atts()). '>'. shortcodes($content) . '</div>';
}
Thank you.