我可以在网上预览我将创建的.md文件吗?或者我必须将.md转换为.html文件? 因为我想写降价,上传文章没有任何转换。有可能吗?
答案 0 :(得分:1)
有一个节点模块,可以将markdown文件转换为html文件。
在项目中
Install npm install -D markdown-folder-to-html
Add docs to npm scripts {"scripts": {"docs": "markdown-folder-to-html"}}
npm run docs and open _docs/index.html
全球
Install npm install -g markdown-folder-to-html
cd markdown-folder-to-html/ and open _docs/index.html
示例:
mkdir -p docs
Add some docs echo "**Banana**" > docs/banana.md
Add some docs echo "**Apple**" > docs/index.md
markdown-folder-to-html docs/ // it will create _docs folder which contains html preview of markdown
答案 1 :(得分:0)