There is a workaround by encoding the input text and then post or submit the content.
I normally use Online conversion tool before submitting the posts.
http://www.opinionatedgeek.com/DotNet/Tools/HTMLEncode/encode.aspx
Example:
If we use following text in title,
Project <Name> could not be opened because the Visual C# 2012 compiler could not be created.
C# Corner will update the text as,
Project could not be opened because the Visual C# 2012 compiler could not be created.
Yes, <Name> got ignored. After HTML-encoded input,
Project <Name> could not be opened because the Visual C# 2012 compiler could not be created.
C# Corner will update the text as,
Project <Name> could not be opened because the Visual C# 2012 compiler could not be created.

Mahesh ChandPosted Jan 1, 2013, 1:15 PM
Problem is some people post junk in HTML and spam. So we may have put some checks.