Why did SO decide to use Markdown sharp? It seems that a better idea would be to get both the HTML and the markdown from the client-side WMD. This way there would be no incompatibilities between two implementations, at the expense of having to store both in the DB.
feedback
|
|
And then what do you do when people have javascript disabled? Note, XSS protection is completely unrelated to Markdown support, even though it is super important. The typical XSS protection function has the following sig: So ... to recap. If you posted both html and markdown to the server:
| |||||||||||||||||||||||||||
feedback
|
|
And then what do you do when people sends you malformed/XSSed content?
| |||||||||||
feedback
|
|
While there would be no incompatibilities (since there would then only be one [someone can feel free to insert a Highlander pic/joke here]), there would also be no markdown for those with scripting disabled (as pointed out by waffles) and there would be less protection from malformed content. | |||||||||||||||||||
feedback
|
|
I really feel that @voyager's answer is the best one, but I think you hit on a valid point in your own question:
In my opinion, if there's incompatibilities between the two implementations then the client side one is wrong. This is because the server is ultimately the system which sanitizes and stores the data. I have read (but can't recall now -- someone please comment with a link?) posts on meta explaining why certain parts of Markdown don't work right client side due to the limitations of the client side logic. Thus, the server side is the "correct" way and can't be done away with. But ultimately, @voyager is right, you can never trust user input! | |||||||||
feedback
|