So I'm using Markdown to format text input from user:

http://michelf.com/projects/php-markdown/

But I'm doing this destructively, so the text turns into HTML before database update. Can I transform it back to markdown when displaying it on the screen? The reason is that I want to allow the user to edit that text, and need it in the original form...

link|improve this question

Not easily, but your could with some margin of error. My question is, why are you storing HTML in the database when it takes up more space? – FakeRainBrigand Jan 18 at 2:16
I would actually nowadays store it twice. Keep the markdown for editing and the readily converted html for display. (But of course, a separate cache would work as well.) – mario Jan 18 at 2:44
feedback

1 Answer

up vote 1 down vote accepted

Have you tried http://milianw.de/projects/markdownify/ ?

However, I should note that you should generally not store display formats in your database. It's worth considering storing the markdown in the DB and converting it to HTML on demand.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.