When I am posting code using pre-code html tags, everything inside < > are lost, how to use html formatting correctly, so that I can see it ?
eg. if I have #include header.h, how can I use < > in header.h ?
|
When I am posting code using pre-code html tags, everything inside < > are lost, how to use html formatting correctly, so that I can see it ? eg. if I have #include header.h, how can I use < > in header.h ? |
|||
|
|
|
Method 1: Backticks for in-line code escaping:
Method 2: Four spaces for code blocks:
(four spaces after two newlines, followed by #include <header.h>) Method 3: Regular HTML escape codes: < >. (< for < and > for >) |
||||
|
|