Skip to content

Instantly share code, notes, and snippets.

@jeena
Created July 1, 2010 13:10
Show Gist options
  • Save jeena/459935 to your computer and use it in GitHub Desktop.
Save jeena/459935 to your computer and use it in GitHub Desktop.
<div id="preview"></div>
<%= javascript_include_tag ["showdown"] %>
<script>
document.observe("dom:loaded", function() {
var converter = new Showdown.converter();
$("post_content").observe("keyup", function(e) {
$("preview").innerHTML = converter.makeHtml($("post_content").value);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment