markdown2html-cli 是一款使用gulp开发的小工具,用于进行Markdown到Html的转换,相比同类工具的优势,支持自动TOC 即自动根据标题生成目录,同时也支持代码高亮等。
如何使用移动到项目的根目录,将您的md文件重命名为index.md,运行:
npm install然后运行:
gulp tohtml生成的文件位于dist/index.html。
但是,如果想在写下markdown文件时进行实时预览怎么办?别担心。您可以使用 gulpwatch :
1、首先安装livereload
2、运行命令行
$ cd your_work_dir$ http-server ;;;if your have not install it.please run npm install -g http-server$ gulp watch现在可以打开 127.0.0.1:8080/index.html 浏览。
Cliargs:--path:工作文件路径,它支持gulp路径语法,如*.md,**/*.md等。
--title:文件title
示例:
gulp tohtml --path **/*.md --title demo-page
评论