cboettig / labnotebook

:notebook: Source code and version history for my online lab notebook
http://www.carlboettiger.info
Creative Commons Zero v1.0 Universal
98 stars 61 forks source link

Automatic link checker #94

Closed cboettig closed 11 years ago

cboettig commented 11 years ago
cboettig commented 11 years ago

Added to .vimrc

"Link checker
map \lc : call LinkCheck()<CR>
function! LinkCheck()
silent "w"
silent "! pandoc % -o temp.html"
execute "! linkchecker temp.html"
endfunction