add mediawiki support
This commit is contained in:
+5
-1
@@ -4,7 +4,7 @@ module Gollum
|
|||||||
|
|
||||||
Wiki.page_class = self
|
Wiki.page_class = self
|
||||||
|
|
||||||
VALID_PAGE_RE = /^(.+)\.(md|mkdn?|mdown|markdown|textile|rdoc|org|creole|re?st(\.txt)?|asciidoc|pod)$/i
|
VALID_PAGE_RE = /^(.+)\.(md|mkdn?|mdown|markdown|textile|rdoc|org|creole|re?st(\.txt)?|asciidoc|pod|(media)?wiki)$/i
|
||||||
FORMAT_NAMES = { :markdown => "Markdown",
|
FORMAT_NAMES = { :markdown => "Markdown",
|
||||||
:textile => "Textile",
|
:textile => "Textile",
|
||||||
:rdoc => "RDoc",
|
:rdoc => "RDoc",
|
||||||
@@ -12,6 +12,7 @@ module Gollum
|
|||||||
:creole => "Creole",
|
:creole => "Creole",
|
||||||
:rest => "reStructuredText",
|
:rest => "reStructuredText",
|
||||||
:asciidoc => "AsciiDoc",
|
:asciidoc => "AsciiDoc",
|
||||||
|
:mediawiki => "MediaWiki",
|
||||||
:pod => "Pod" }
|
:pod => "Pod" }
|
||||||
|
|
||||||
# Sets a Boolean determing whether this page is a historical version.
|
# Sets a Boolean determing whether this page is a historical version.
|
||||||
@@ -161,6 +162,8 @@ module Gollum
|
|||||||
:pod
|
:pod
|
||||||
when /\.(\d)$/i
|
when /\.(\d)$/i
|
||||||
:roff
|
:roff
|
||||||
|
when /\.(media)?wiki$/i
|
||||||
|
:mediawiki
|
||||||
else
|
else
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
@@ -252,6 +255,7 @@ module Gollum
|
|||||||
when :rest then 'rest'
|
when :rest then 'rest'
|
||||||
when :asciidoc then 'asciidoc'
|
when :asciidoc then 'asciidoc'
|
||||||
when :pod then 'pod'
|
when :pod then 'pod'
|
||||||
|
when :mediawiki then 'mediawiki'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user