X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/548e43118e84281f3de7eb78fbfb80f8fc9cf22e..8f67b23f0993155097f87b3f9a7866029ccb72cf:/Makefile diff --git a/Makefile b/Makefile index 82fb27f..c9d1155 100644 --- a/Makefile +++ b/Makefile @@ -52,9 +52,18 @@ doc: build/html2vimdoc build/vim-tools build/html2vimdoc/bin/python build/vim-tools/html2vimdoc.py -f vim-markdown \ doc/tmp.md | \ sed -E -e "s/[[:space:]]*$$//" -e "# remove trailing spaces" \ + -e "/^.{79,}\|$$/ {" -e "# wrap table of contents over 79" \ + -e "h" -e "# save the matched line to the hold space" \ + -e "s/^(.*) (\|[^|]*\|)$$/\1/" -e "# make content title" \ + -e "p" -e "# print title" \ + -e "g" -e "# restore the matched line" \ + -e "s/^.* (\|[^|]*\|)$$/ \1/" -e "# make link" \ + -e ":c" -e "s/^(.{1,78})$$/ \1/" -e "tc" -e "# align right" \ + -e "}" \ -e "/^- '[^']*':( |$$)/ {" \ - -e "h" -e "# save the matched line to the hold space"\ - -e "s/^- '([^']*)':.*/ \*\1\*/" -e "# make command reference" \ + -e "h" -e "# save the matched line to the hold space" \ + -e "s/^- '([^']{3,})':.*/ \*\1\*/" -e "# make command reference" \ + -e "s/^- '([^']{1,2})':.*/ \*vim-markdown-\1\*/" -e "# short command" \ -e ":a" -e "s/^(.{1,78})$$/ \1/" -e "ta" -e "# align right" \ -e "G" -e "# append the matched line after the command reference" \ -e "}" > doc/vim-markdown.txt && rm -f doc/tmp.md