I've noticed that - whilst language detection apparently is a thing - syntax highlighting is completely missing with the [code] tag.
The following appears all-white for myself;
On other forums I use the code would be syntax-highlighted, similar to;
// in-line comment
/*
multi-line comment
*/
int function( const int _arg )
{
return _arg + 3;
}
The following appears all-white for myself;
C:
// in-line comment
/*
multi-line comment
*/
int function( const int _arg )
{
return _arg + 3;
}
// in-line comment
/*
multi-line comment
*/
int function( const int _arg )
{
return _arg + 3;
}