A HTML
escape tool is a must for the people who share a lot of code in their blogs. There are many special characters which hinder in rendering your post properly if not escaped.
The below program has characters <
and >
which should be escaped with characters <
and >
respectively
#includeI use Postify to escape special characters before using them. Below is the escaped version of the above program using Postifyint main() { std::cout << "Hello World"; return 0; }
#include <iostream> int main() { std::cout << "Hello World"; return 0; }
No comments :
Post a Comment