I am working on blogging software. Occasionally users manage to paste control characters into their blog posts (for example someone recently managed to paste in the vertical tab character, ). When we render the posts in an RSS Feed, XML parsers fail to parse the control character and declare the feed invalid.
One way to fix this would be to do a character-by-character scan of the string and remove any invalid characters. This would mean maintaining a list of invalid characters. Does anyone know if such a list already exists?
Or maybe someone knows of library that already handles this problem? I am writing in C#, but I can port a library written in another language.
Or is there some solution that I am missing?
Note, this does not appear to be a unicode or an escaping problem. The RSS feed displays brackets, Chinese characters, wingdings, smart quotes, etc. just fine. It's just certain control characters that seem to make the feed not validate.
