Comment on Using the C preprocessor as an HTML templating engineparentComments−ksherlock2y# is only processed by cpp when it's the first non-whitespace character in a line so that shouldn't be an issue in the real world. But, yeah, SSI.−woodruffw2yTrue. Maybe < and > would have been better examples, although one could argue those are optional :-)−zzo38computer2yYes, although if you use #define or C comments or several other stuff then it can potentially cause a problem due to it is not a C syntax and is not expected.
Comments
# is only processed by cpp when it's the first non-whitespace character in a line so that shouldn't be an issue in the real world. But, yeah, SSI.
True. Maybe < and > would have been better examples, although one could argue those are optional :-)
Yes, although if you use #define or C comments or several other stuff then it can potentially cause a problem due to it is not a C syntax and is not expected.