.vim/ftplugin/markdown.vim

Thu, 11 Apr 2024 22:25:18 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 11 Apr 2024 22:25:18 -0500
changeset 1150
52033d249bcb
parent 931
55c477df9d1b
permissions
-rw-r--r--

Adjust treesitter load

runtime ftplugin/text.vim
setl equalprg=pandoc\ -f\ markdown\ -t\ markdown

if !exists('b:markdown_autohtml')
  let b:markdown_autohtml = 0
endif

function! s:autohtml() abort
  if get(b:, 'markdown_autohtml', 0)
    silent !md2html -o "%:p.html" "%:p"
  endif
endfunction

augroup Markdown
  autocmd!
  autocmd BufWritePost <buffer> call s:autohtml()
augroup END

mercurial