How can I determine the markup format for extensionless README files?

2026-06-11 07:204阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计155个文字,预计阅读时间需要1分钟。

How can I determine the markup format for extensionless README files?

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...

How can I determine the markup format for extensionless README files?

ItssomewhatcommonespeciallyforPerlprojectstohavePODmarkdowninaREADMEfile

It's somewhat common especially for Perl projects to have POD markdown in a README file without a

1.pod

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分钟。

How can I determine the markup format for extensionless README files?

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...

How can I determine the markup format for extensionless README files?

ItssomewhatcommonespeciallyforPerlprojectstohavePODmarkdowninaREADMEfile

It's somewhat common especially for Perl projects to have POD markdown in a README file without a

1.pod

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?