Is that for real?
1) No multiple inline tags:
[spoil=Example]
Code: Select all
<h3><i class="someicon"/> This is a <strong>header</strong></h3>
compared to
Code: Select all
h3
i.someicon
This is a
strong header
Seems pretty weird. I don't even know if the "This is a" text is properly indented or should be to the left (which would be weird as it would make it look like it's outside the header).[/spoil]
2) No angle brackets makes it weird, what if I wanted to do for this list:
[spoil=Code]
Code: Select all
<div class="test">
i.Sometext
<i class="icon"></i>
ii.Someothertext
</div>
Code: Select all
div.test
i.Sometext
i.icon
ii.Someothertext
The css-style dots compared to regular text dots collide, would require escaping or something.[/spoil]
3) Seems really unreadable. Mostly due to the examples above. Personally I prefer seeing the word class over a dot because it's much more readable, specially if you're dealing with text. Also you can search without using some weird regex checking for spaces after the dots and whatnot.