Markdown: Added initial version of Markdown checkers

This commit is contained in:
Charles A. Beynon 2014-10-06 02:23:45 -04:00
parent a3cf0cb65c
commit a7e002cf4d
2 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,40 @@
"============================================================================
"File: mdchecker.vim
"Description: Checks Markdown source code using mdl
"Maintainer: Charles Beynon <etothepiipower@gmail.com>
"License: This program is free software. It comes without any warranty,
" to the extent permitted by applicable law. You can redistribute
" it and/or modify it under the terms of the Do What The Fuck You
" Want To Public License, Version 2, as published by Sam Hocevar.
" See http://sam.zoy.org/wtfpl/COPYING for more details.
"
"============================================================================
if exists("g:loaded_syntastic_mkd_mdchecker_checker")
finish
endif
let g:loaded_syntastic_mkd_mdchecker_checker = 1
let s:save_cpo = &cpo
set cpo&vim
function! SyntaxCheckers_mkd_mdchecker_GetLocList() dict
let makeprg = self.makeprgBuild({})
let errorformat = '%f:%l: %m'
return SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat })
endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'mkd',
\ 'name': 'mdchecker',
\ 'exec': 'mdl'})
let &cpo = s:save_cpo
unlet s:save_cpo
" vim: set et sts=4 sw=4:

View File

@ -0,0 +1,40 @@
"============================================================================
"File: mdchecker.vim
"Description: Checks Markdown source code using mdl
"Maintainer: Charles Beynon <etothepiipower@gmail.com>
"License: This program is free software. It comes without any warranty,
" to the extent permitted by applicable law. You can redistribute
" it and/or modify it under the terms of the Do What The Fuck You
" Want To Public License, Version 2, as published by Sam Hocevar.
" See http://sam.zoy.org/wtfpl/COPYING for more details.
"
"============================================================================
if exists("g:loaded_syntastic_mkd_mdkramdownchecker_checker")
finish
endif
let g:loaded_syntastic_mkd_mdkramdownchecker_checker = 1
let s:save_cpo = &cpo
set cpo&vim
function! SyntaxCheckers_mkd_mdkramdownchecker_GetLocList() dict
let makeprg = self.makeprgBuild({ 'args': '--warnings' })
let errorformat = '%f: Kramdown Warning: %m found on line %l'
return SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat })
endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'mkd',
\ 'name': 'mdkramdownchecker',
\ 'exec': 'mdl'})
let &cpo = s:save_cpo
unlet s:save_cpo
" vim: set et sts=4 sw=4: