81

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?

Kjuly
  • 498
Brock Woolf
  • 1,966

15 Answers15

62

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

dbr
  • 5,147
dzen
  • 721
40

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).

Gareth
  • 19,080
Chealion
  • 26,327
28

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.
19

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

slhck
  • 235,242
0xced
  • 590
7

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.

Dori
  • 1,131
5

Emacs markdown mode gives you a live preview as you write, and also a full HTML/Browser preview with C-c C-p.

enter image description here

ocodo
  • 1,801
4

nvALT - Notational Velocity Fork

nvalt

Gareth
  • 19,080
Lri
  • 42,502
  • 8
  • 126
  • 159
3

vim-instant-markdown is a vim plugin that shows near-instant updates in your system default web browser. It even works in MacVim, though I had to fiddle with $PATH a little.

wfaulk
  • 6,307
2

The recently revived Smultron can do that as well without pressing any keys:

  1. Set the "Preview Parser" to "Markdown" in the advanced preferences under "Really Advanced".
  2. Then open the preview window with "Tools" / "Preview". VoilĂ .
Beat Rupp
  • 1,421
2

Texts for Mac OS X and Windows.

Texts Screenshot

1

An old, but still relevant, question. All the answers appear to be 8-10 years old, but I believe that Typora is the answer as of today.

AFAIK, there's nothing quite like it: As you type your markdown in the editor, Typora displays the "code". Once you've completed an actively-edited passage, Typora collapses it as rendered text.

It's also free ($) during its beta release phase.

Seamus
  • 204
1

Visual Studio Code (vscode) supports it out of the box

https://code.visualstudio.com/docs/languages/markdown

enter image description here

0

Nowadays, there's the beautiful MarkText among others.

gildux
  • 282
0

Windows users can use Resophnotes to write their text in Markdown and use the "HTML" icon to preview the marked up text then export the html formatted text.

http://www.resoph.com/ResophNotes/Welcome.html

0

I might as well a link to my SU question - where I looked for the same, just PHP/JavaScript based (that can run on a locally installed server):

Markdown "single page" PHP web application with live preview? [closed] - Super User

sdaau
  • 6,008