Skip to content

Instantly share code, notes, and snippets.

@j-mcnally
Created April 29, 2014 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j-mcnally/85a33178e2fe46bf5da1 to your computer and use it in GitHub Desktop.
Save j-mcnally/85a33178e2fe46bf5da1 to your computer and use it in GitHub Desktop.
<form onsubmit="grabMarkdownHtml()">
<textarea id='md_html' name="md_html"></textarea>
</form>
<script>
var editor = new EpicEditor().load();
grabMarkdownHtml = function() {
document.getElementById('md_html').value = editor.getElement('previewer').body
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment