diff options
| author | Xu Cheng | 2015-01-13 21:22:12 +0800 | 
|---|---|---|
| committer | Jack Nagel | 2015-01-13 16:35:24 -0500 | 
| commit | b109e4f1f1c39fb4d7ba49dc954c4de9ab3d286b (patch) | |
| tree | efbbc46099daf1eb50b61436cf7d33ae11e7cea6 | |
| parent | 7f7742c2b67425bcede505dc8ab34816bc6891f8 (diff) | |
| download | brew-b109e4f1f1c39fb4d7ba49dc954c4de9ab3d286b.tar.bz2 | |
metafile: extend ext list
Closes Homebrew/homebrew#35820.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Homebrew/metafiles.rb | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/Library/Homebrew/metafiles.rb b/Library/Homebrew/metafiles.rb index c0a920912..6d8f71f2a 100644 --- a/Library/Homebrew/metafiles.rb +++ b/Library/Homebrew/metafiles.rb @@ -1,5 +1,9 @@  class Metafiles -  EXTENSIONS = %w[.md .html .rtf .txt] +  # https://github.com/github/markup#markups +  EXTENSIONS = %w[ +    .adoc .asc .asciidoc .creole .html .markdown .md .mdown .mediawiki .mkdn +    .org .pod .rdoc .rst .rtf .textile .txt .wiki +  ]    BASENAMES = %w[      about authors changelog changes copying copyright history license licence      news notes notice readme todo | 
