Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Markdown: mdl

LCD 47 edited this page Jun 12, 2016 · 7 revisions

This file is no longer maintained

This file exists only as a historic reference. Documentation for syntastic checkers is now included in the manual, please see :help syntastic-checkers in Vim.


Maintainer: Charles Beynon etothepiipower@gmail.com

Markdown lint tool is a style checker for Markdown files. See the project's page at GitHub for details.

Installation

To install Markdown lint, run:

gem install mdl

Note

You can also use the Node.js-based markdownlint-cli as a checker instead of mdl. To do that, you have to point g:syntastic_markdown_mdl_exec to markdownlint, and set g:syntastic_markdown_mdl_args to an empty string (or to a set of valid markdownlint-cli options):

let g:syntastic_markdown_mdl_exec = 'markdownlint'
let g:syntastic_markdown_mdl_args = ''
Clone this wiki locally