A {code} block specifying C or CPP seems to not recognize /* */ style comments -- which is a pretty huge oversight. It does recognize // style comments. Is there anything I'm missing? Here's the markup:
{code:language=cpp}
int main (int argc, char** argv)
{
// This is a line comment
// this new and ->
/*
* This is a block comment
* This new and ->
*/
return 0;
}
{code}
And here's how it displays:
Notice that "this" and "new" are being highlighted incorrectly. Seemingly the block comment is not being recognized at all.
Thanks