网站上的Markdown预览

时间:2016-05-23 18:06:07

标签: markdown

我可以在网上预览我将创建的.md文件吗?或者我必须将.md转换为.html文件? 因为我想写降价,上传文章没有任何转换。有可能吗?

2 个答案:

答案 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

安装指南:https://chimeces.com/markdown-folder-to-html/

答案 1 :(得分:0)

  1. Mark markdown不是html标准的一部分,所以你需要一个解析markdown的程序,它确实存在。所以有可能。
  2. 您可以在stackedit.等网站上预览您正在撰写的降价标记我使用jekyll将我的降价文件转换为html文件并以这种方式上传。这不是很困难。