What is the markup type for extensionless README files?
- 内容介绍
- 文章标签
- 相关推荐
本文共计155个文字,预计阅读时间需要1分钟。
在Perl项目的README文件中,常见但不常带1.pod扩展名的POD markdown。以下是一个示例:
markdownREADME文件中通常包含POD markdown,但无需1.pod扩展名。
ItssomewhatcommonespeciallyforPerlprojectstohavePODmarkdowninaREADMEfileIt's somewhat common especially for Perl projects to have POD markdown in a README file without a
extension, 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分钟。
在Perl项目的README文件中,常见但不常带1.pod扩展名的POD markdown。以下是一个示例:
markdownREADME文件中通常包含POD markdown,但无需1.pod扩展名。
ItssomewhatcommonespeciallyforPerlprojectstohavePODmarkdowninaREADMEfileIt's somewhat common especially for Perl projects to have POD markdown in a README file without a
extension, 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?

