Standalone editor for your markdown files
- Side-by-side markdown editor & html preview
- Live, when you type html preview
- Codehilite & markdown extra syntax support by default
- Github syntax support
- Github styles for rendering and codehilite
- Python-Markdown
Launch editor for testing :
$ markdown_edit.py Edit existing markdown file for preview :
$ markdown_edit.py readme.mdEdit existing markdown file and save html output file :
$ markdown_edit.py -f readme.html readme.mdYou can import this script as a module to write your own applications based on the markdown editor.
example :
importmarkdown_edit# ...defaction_send(document):
send_markdown_text(document.text)
# or send_raw_html_code(document.getHtml())
# or send_html_with_styles(document.getHtmlPage())
returnhtml_to_display_as_result, keep_running_local_serverif__name__== '__main__:
markdown_edit.web_edit(
actions=
[
('Send',action_send),
],
title=MY_HTML_HEAD)
