chriskonnertz / bbcode

A BBCode parser and converter written in PHP.
MIT License
38 stars 25 forks source link

Nested bbcode tags #3

Open hansgv opened 6 years ago

hansgv commented 6 years ago

Do nested bbcode tags work? Like so:

[quote][quote]He said[/quote]she said[/quote]

chriskonnertz commented 6 years ago

Hello,

yes:

<blockquote><blockquote>He said</blockquote>she said</blockquote>

Plus:

[quote][b]He said[/b]she said

=>

<blockquote><strong>He said</strong>she said</blockquote>

Missing closing tags will be added. However, this is a simple approach that does not always create great results:

[quote][b]He said she said[/quote]

We would expect:

<blockquote><strong>He said she said</strong></blockquote>

But what we get is:

<blockquote><strong>He said she said</blockquote></strong>
hansgv commented 6 years ago

Awesome! How about [quote date='needs-to-be-parsed']Something irrelevant[/quote]

chriskonnertz commented 6 years ago

I believe adding named attributes is not something that BBCode supports... So no, currently that is not possible.