Advertisement
Scroll to top
Read Time: 1 min
This post is part of a series called Vim Essential Plugins.
Vim Essential Plugin: SnipMate
Vim Essential Plugin: tComment

We're cheating a bit in this episode. Rather than installing an actual plugin, we'll be using a couple tools to allow us to write and convert Markdown to HTML. It's really a simple process, and can save great deals of time.


Usage

First, we need to download Markdown and place it within our runtime folder. On the Mac, you can drag the Markdown.pl file into your usr/local/bin/ folder. And that's it; you're all set! Next, to trigger the markdown-to-html conversion, we need to provide two parameters: the path to the Markdown.pl file, and the command itself.

Within Vim, the following should do the trick:

1
2
:%! /usr/local/bin/Markdown.pl --html4tags

This instructs the Markdown.pl file to run on the curent page. But, that's a little too much typing; let's instead save this to our .vimrc file, and assign it to a shortcut.

1
2
".vimrc file

3


4
"Markdown to HTML
5
nmap <leader>md :%!/usr/local/bin/Markdown.pl --html4tags <cr>

With this line of code, whenever we type - by default - backslash + md, that command will run, thus converting our markdown to clean HTML.

Advertisement
Did you find this post useful?
Want a weekly email summary?
Subscribe below and we’ll send you a weekly email summary of all new Code tutorials. Never miss out on learning about the next big thing.
Advertisement
Looking for something to help kick start your next project?
Envato Market has a range of items for sale to help get you started.