wincent / docvim

Documentation generator for Vim plug-ins
MIT License
25 stars 0 forks source link

Consider auto-inferring indent/dedent #22

Open wincent opened 8 years ago

wincent commented 8 years ago

Option A: auto-infer

" # Website
"
" The official Loupe source code repo is at:
"
"   http://git.wincent.com/loupe.git
"
" A mirror exists at:
"
"  https://github.com/wincent/loupe
"
" Official releases are listed at:
"
"   http://www.vim.org/scripts/script.php?script_id=5215
"

Option B: explicit

" # Website
"
" The official Loupe source code repo is at:
"
" @indent
"   http://git.wincent.com/loupe.git
" @dedent
"
" A mirror exists at:
"
" @indent
"  https://github.com/wincent/loupe
" @dedent
"
" Official releases are listed at:
"
" @indent
"   http://www.vim.org/scripts/script.php?script_id=5215
" @dedent
"

Option C: use lists instead

" # Website
"
" The official Loupe source code repo is at:
"
" - http://git.wincent.com/loupe.git
"
" A mirror exists at:
"
" - https://github.com/wincent/loupe
"
" Official releases are listed at:
"
" - http://www.vim.org/scripts/script.php?script_id=5215
"