Bug with [small] and [sup] tags

The [small] tag sort of swallows the newline, so :
[small]bla[/small]
[small]bla[/small]

will look like :
bla bla

Also using inline code with character or string literals and [sup] tag in the same line causes formatting errors as well :
[code]foo('a'); bar("abc");[/code][sup]see?[/sup]
foo('a'); bar("abc");see?

I'm not sure if these are known bugs, or if they extend to more tags/formats.

Also these are not serious bugs at all, but good to know anyway :).
closed account (1vRz3TCk)
The [small] tag sort of swallows the newline, so :

There are a number of tags that seem to mess up, Bold, Italic

Bold Bold Italic Underline

All the above, if they are above, are on new lines
Put the newline in the tags:

[b]bold
[/b]
[i]italic[/i]

Becomes:

bold
italic

And put a line between the code and sup tags:


[code]foo('a'); bar("abc");[/code]

[sup]see?[/sup]

You should get:

foo('a'); bar("abc");

see?
Topic archived. No new replies allowed.