How can I determine the markup format for extensionless README files?
- 内容介绍
- 文章标签
- 相关推荐
本文共计155个文字,预计阅读时间需要1分钟。
It's somewhat common for Perl projects to include POD markdown in a README file without a .pod extension. Here's an example of this. The simplest way to support it is...
It's somewhat common especially for Perl projects to have POD markdown in a README file without a
1.podextension, here's one example of this.
The simplest way to support this would be to simply shell out to
1file(1)for README files:
12v rakudo (master) $ file README README: Perl POD document text该提问来源于开源项目:github/markup
It seems the symlink workaround stopped working recently? I.e., if README.md is a symlink that points to README, GitHub no longer renders the README contents as Markdown?
本文共计155个文字,预计阅读时间需要1分钟。
It's somewhat common for Perl projects to include POD markdown in a README file without a .pod extension. Here's an example of this. The simplest way to support it is...
It's somewhat common especially for Perl projects to have POD markdown in a README file without a
1.podextension, here's one example of this.
The simplest way to support this would be to simply shell out to
1file(1)for README files:
12v rakudo (master) $ file README README: Perl POD document text该提问来源于开源项目:github/markup
It seems the symlink workaround stopped working recently? I.e., if README.md is a symlink that points to README, GitHub no longer renders the README contents as Markdown?

