是否有一种方法可以离线显示。md文件,这样我们就可以知道它上传到Github后会是什么样子?我指的是显示README。md文件,因为它将出现在Github,而不是作为编辑的目的。

需要在Mac和Windows上工作,因为我都用。


当前回答

我发现MarkView谷歌Chrome扩展非常有用,实际上它的工作就像一个魅力:

MarkView is a Chrome extention for editing and viewing markdown file with an outline view, support multiple table format styles, code block syntax highlight and Github Flavored Markdown. Features: Editing and Viewing markdown file in web page style. Auto reload local file when file is changed (Post-installation: select "Allow access to file URLs" option in chrome://extensions/) Show outline beside the content in scrollable way Have buttons for GoTop, ViewSource and GoBottom Support Github Flavored Markdown table styles and code highlight. Highlight the code area for programming languages(eg. ```ruby) Support web pages printing with decent outlook(Chrome->File->Print...) Responsive: when the window size small than 940px, outline section will automatically hidden; resize bigger than 940px, outline section will display. MarkView will view all markdown files except those under raw.github.com because that subdomain only displays the source.

更多的功能已添加到MarkView:

所见即所得markdown编辑器 主题和代码样式选择 支持脚注1系 即时幻灯片演示 文档自定义样式 添加主题CSS并选择 添加代码样式并选择 编写CSS,保存并运行

其他回答

我找到了一种在PHP中查看它的方法。在做了更多的窥探之后,我发现了离线和在线查看.md文件的2个解决方案:

离线:https://github.com/WolfieZero/Markdown-Viewer-PHP 网站:http://daringfireball.net/projects/markdown/dingus

我推荐离线版本,这样即使你在王位上处理你的事务,你也可以进行编辑。:)

Visual Studio流行的Web Essentials插件提供了Markdown查看器和编辑器。它还支持用于添加代码片段的Github语言语法。

http://vswebessentials.com/features/markdown

Visual Studio Code -微软的新编辑器也为降价编辑提供了很好的支持。 你可以从这里下载。 编辑器提供了在降价代码和预览模式之间切换的良好支持。 它还为所有markdown语法提供了相当好的智能感知支持。 该编辑器是免费使用的,也是跨平台的(适用于Linux, Windows和Mac)。 要了解更多细节,你可以在他们的网站上查看

在MacOSX上运行良好的最简单的资源之一是InkMark上的Markdown Quick Look插件。在OS X 10.9+上安装后,你只需在Finder中选择一个降价文件,然后点击空格键。我不确定结果是否与Github 100%相关,但他们是相当不错的,使一个微小的不显眼的离线查看者唯一的解决方案。Mashable也写了一篇关于78种不同工具的文章,如果你想要其他选择。

考虑捷联式。

Strapdown是基于javascript的解决方案,它在浏览器中呈现降价内容,这使得它非常适合脱机查看。 从他们自己的描述来看:

Strapdown.js使得创建优雅Markdown文档变得非常简单。不需要服务器端编译。

所以重命名你的。md markdown文件为。html,并围绕它:

<xmp theme="united" style="display:none;">
# Markdown content here
…
</xmp>
<script src="http://strapdownjs.com/v/0.2/strapdown.js"></script>

并且在任何浏览器中打开都会显示呈现的HTML。额外的好处:你可以很容易地改变主题。