Markdown Live Preview Editor?

37,527

Solution 1

If you want to use TextMate, change your file's language association to 'HTML'. In the Preview window there is a drawer that offers the option pipe the text through 'Markdown.pl'. (See screenshot).

Markdown

The alternative I use for Makrdown is not an officially released app but personally I use markdownlive by Jonathan 'Wolf' Rentzsch. It's open source available on GitHub and will require you to compile it using Xcode. It also allows you to copy the Generated HTML (what I like to use it for quite a bit).

Solution 2

There is also "Mou", a live editor for Mac OS X (Lion). It's still in beta, but works great! http://mouapp.com/

When current available Markdown editors are almost all for general writers, Mou is different: It's for web developers. Syntax highlighting, live preview, fullscreen mode, auto save, powerful actions, auto pair, incremental search, custom themes, HTML export, enhanced CJK characters support.

enter image description here

Solution 3

Mac only, Marked provides markdown and multi-markdown preview for any text editor. The preview is updated when you save the text file.

Marked screenshot


MarkdownPad is for Windows, but provides live preview.

MarkdownPad screenshot


ReText is available for other platforms and offers a live preview of rendered Markdown:

ReText is a simple text editor for Markdown syntax. It is written in Python using Qt libraries, able to run on any platforms (Linux and BSD are officially supported)

ReText screenshot

Although not officially supported, there are Windows installation instructions as well; however, I had to make a few modifications to get them to work (the complete set with my corrections is shown below):

Installation

  1. Install Python27
  2. Install PyQT precompiled for PyQt-Py2.7-x86-gpl-4.8.3-1.exe PyQt-Py2.7-x86-gpl-4.8.4-1.exe
  3. Install easy_install setuptools-0.6c11.win32-py2.7.exe
  4. Update your My Computer's Environmental Variables. Click Start, right-click My Computer and select Properties, select the Advanced tab, then click Environment Variables.
  5. Under System Variables, click New. Under variable name enter PYTHONPATH. Under Variable value enter C:\Python27\Lib\;C:\Python27\Lib\site-packages\
  6. Select the System Variable PATH click Edit. Update the PATH variable value by adding C:\Python27;C:\Python27\Lib\site-packages\PyQt4\bin; to the front of the existing entries so that it reads like PATH=C:\Python27;C:\Python27\Lib\site-packages\PyQt4\bin;...
  7. Install additional Python libraries. Select Start then Run, type cmd then cd \python27\scripts. Enter:
    • easy_install Pygments
    • easy_install ElementTree
    • easy_install Markdown
    • easy_install gdata
  8. Download and unpack current ReText (ATM 0.8.1)
  9. Download and unpack ReText icons
  10. Place the unpacked icons into the ReText\icons folder
  11. Navigate to the retext.py file (probably at c:\retext). Right-click drag-and-drop retext.py and select Create shortcuts here.
  12. Right-click on the shortcut to adjust the properties.
  13. Change target to "C:\Python27\python.exe" retext.py and Run to minimized.
  14. Change the icon (which will require you to make an .ico file from one of the .png files unzipped above into the ReText/icons directory, which can be done here
  15. Change the shortcut name on the general tab if desired.

Solution 4

MarkdownLive does exactly what you want, free and open source.

Download the release through GitHub, or version 1.7.1 from here.

enter image description here

Solution 5

BBEdit does this out of the box: set the current document type to be Markdown, open Preview in BBEdit, and type away. The preview window auto-updates, showing your text just the way you want it.

See page 277 of the BBEdit User Manual for details.

Share:
37,527

Related videos on Youtube

Brock Woolf
Author by

Brock Woolf

I am a software developer and university student based in Perth, Australia. I work on my own software projects in my spare time and write applications and games for iPhone and Mac OS X. You can see some of the software I've written here, or you can find out more about me and how to get in touch here.

Updated on September 17, 2022

Comments

  • Brock Woolf
    Brock Woolf over 1 year

    I am currently using Textmate to create Markdown documents, but it requires me to press CtrlOptionCmd + P everytime I want to 'update' the Markdown output window. Essentially I am using it like a word processor.

    Is there a Markdown editor for Mac OS X which supports wysiwig/live update of the content? Perhaps Textmate already does this?

    • Admin
      Admin about 12 years
      Searching the same for Linux, still this question is very useful (there are some portable programs listed here)
    • Admin
      Admin about 8 years
      There are several editors with inline previewing/wysiwyg capabilities here: softwarerecs.stackexchange.com/questions/5746/…
  • Brock Woolf
    Brock Woolf over 13 years
    I tried markdownlive. It works, but like you said its in development and is quite primitive in the way of syntax colouring. I will try you other method soon.
  • yanokwa
    yanokwa about 13 years
    you do not have to set your file type to html. if you use the markdown bundle, you just need to remove the key equivalent activation of preview in the bundle settings. then textmate's show web preview in the window menu will give you a live preview.
  • Rishabh Agrahari
    Rishabh Agrahari over 12 years
    What about multimarkdown?
  • Thilo
    Thilo over 12 years
    Mou looks great, but requires Lion.
  • Matt Ball
    Matt Ball about 12 years
    You don't have to build MarkdownLive yourself: github.com/rentzsch/markdownlive/downloads
  • Simon Lehmann
    Simon Lehmann almost 12 years
    For those who want to get Marked (which I really can recommend) and still have Snow Leopard (10.6), there is a free Snow Leopard only download available through the FAQ (marked.tenderapp.com/kb/documentation/…): assets.markedapp.com/MarkedSL.zip
  • user72923
    user72923 over 11 years
    +1 For @yanokwa's comment. I particularly like this fork of the markdown plugin, which nicely preserves things like indentation for unordered lists: github.com/fletcher/markdown.tmbundle
  • Eric Hu
    Eric Hu about 11 years
    Do you mind sharing what you did to your $PATH?
  • Zac Thompson
    Zac Thompson almost 11 years
    better to list each of these as separate answers
  • Rory O'Kane
    Rory O'Kane about 10 years
    Warning: the website buries the information that Texts is not free. You can use it only for 30 days before you must purchase a license.
  • Per Quested Aronsson
    Per Quested Aronsson over 9 years
    Tried it, but it could not open the md file...
  • Seamus
    Seamus over 2 years
    Apparently you are correct - thanks for the update. I don't even recall now how I concluded it was open source... perhaps something has changed? "Free during beta" has always been the case, but it's been beta for so long, I wondered if this was to become its perpetual state. But it appears now that beta will end "soon".
  • Seamus
    Seamus over 2 years
    Ugh! I like BBEdit for several reasons, but characterizing its ability to handle Markdown in a user-friendly way is a stretch. And BTW, your link is broken.