If you have a [sourcecode language='c++'] section which includes a single LESS THAN symbol (e.g. in a for loop) and then you have a blockquote section after the [/sourcecode] WordPress keeps eating the /blockquote close tag. pre, code and i all seemed to be unaffected and any subsequent blockquotes. The outline of my post was this: ('{' and '}' indicating "some quantity of")
8x --- snip --- x8
{ preamble }
[sourcecode language='c++']// A comment
// Some code
for ( i = 0 ; i < 10 ; ++i )
{
// some stuff
}
[/sourcecode]Under Windows:
</b>{ some output lines }<b>Under Linux/Mac:
`
{ some other output }
8x --- snip --- x8
The first /blockquote, emphasized in bold (assuming I have any clue at how this is going to get formatted) would get eaten every time I saved no matter what I did until I replaced the < with != which is certainly <i>a</i> solution but is a bad coding practice I don't wish to encourage.