I've got a django-powered site. Currently, all of the textfields are just plain old text inputs that take raw HTML. I have no fancy editor or anything. I would like to start using Markdown and WMD to make things easier for everyone.
Do I have to run some sort of script to go over every text field in the database to convert all the HTML to markdown? If I run the HTML through the markdown filter, will it come out the same on the other side? Will the WMD editor read the HTML from the server and convert it to Markdown for the user to edit?
What's the correct course of action here?