windows windows下如何创建md文件
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/26444250/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to create a md file under windows
提问by user3166162
I am using git bash under windows because I am having some troubles with Linux right now. I have to make a commit but I have no clue how to create a file with extension .md
under the windows platform.
could you please tell me?
Thanks
我在 Windows 下使用 git bash 因为我现在在 Linux 上遇到了一些麻烦。我必须提交,但我不知道如何.md
在 windows 平台下创建带有扩展名的文件。你能告诉我吗?谢谢
回答by DJOldskool
You doing the Coursera data science course as well? :)
你也在学习 Coursera 数据科学课程吗?:)
Syntax is:
语法是:
touch filename.md
Good page I have bookmarked:
我收藏的好页面:
回答by Mureinik
An .md
(short for MarkDown) is just a text file with some fancy formatting options, like making text between two sets of **
bold(GitHub, e.g., has a pretty comprehensive guide).
An .md
(MarkDown 的缩写)只是一个带有一些花哨格式选项的文本文件,例如在两组**
粗体之间制作文本(例如,GitHub 有一个非常全面的指南)。
You can use any text editor, even Notepad, to create such a file.
您可以使用任何文本编辑器(甚至记事本)来创建这样的文件。