I used python markdown with django, it's works perfectly, but it is not enough html previewer in the admin panel. Can't find any markdown previewer (I don't need full converter). Please, advise a javascript markdown previewer.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You're probably looking for showdown.js

Here's an article about it: Using Showdown with and without jQuery

It boils down to this:

var converter = new Showdown.converter();
var input = $("textarea");
var preview = $("#preview");
$(input).keyup(function() {
    preview.html(converter.makeHtml(input.val());
});
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.