Adds files (and modifies) for perl6 refs #907

This commit is contained in:
JJ Merelo 2018-03-12 17:47:28 +01:00
Родитель 31ed04343a
Коммит 3286a7eb44
4 изменённых файлов: 14 добавлений и 1 удалений

Просмотреть файл

@ -38,6 +38,14 @@ Installation
gem install github-markup
```
or
```
bundle install
```
from this directory
Usage
-----

3
lib/github/commands/pod62html Executable file
Просмотреть файл

@ -0,0 +1,3 @@
#!/bin/bash
perl6 --doc=HTML "$1"

Просмотреть файл

@ -19,6 +19,7 @@ module GitHub
MARKUP_RDOC = :rdoc
MARKUP_RST = :rst
MARKUP_TEXTILE = :textile
MARKUP_POD6 = :pod6
end
module Markup

Просмотреть файл

@ -51,4 +51,5 @@ command(
"restructuredtext"
)
command(::GitHub::Markups::MARKUP_POD, :pod2html, /pod/, ["Pod"], "pod")
command(::GitHub::Markups::MARKUP_POD6, :pod6tohtml, /pod/, ["Pod6"], "pod6")
command(::GitHub::Markups::MARKUP_POD, :pod2html, /pod$/, ["Pod"], "pod")