Does anybody know is there any django app/lib which give secured Markdown or other markup language? Or there is no any way to give users to use Markdown in secured for my server way?

link|improve this question

75% accept rate
3  
See: stackoverflow.com/questions/1703678/… – arie Apr 17 '11 at 21:51
That is good. Thanks. – Cris Apr 17 '11 at 22:04
feedback

1 Answer

An also great solution that isn't mentionned in the link indicated in the comments, is the use of markdown2.

If you like using markdown2 ;)

And it has also a secure mode in order to avoid html/js/css execution, so it would fit your needs! :)

return Markdown(safe_mode="replace/escape/Boolean").convert(text)

You can use :

  • replace : will replace the html by an horrible text :p
  • escape : Will escape the html text (what I prefer)
  • Boolean: if set to True, will use replace. Boolean is here for retro-compatibility
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.