Commit 6d25484417b14776739eff91e6fa009b2b989cd7
1 parent
7665b1de
Exists in
master
and in
4 other branches
Limit available Wiki formats to Markdown and RDoc.
Showing
1 changed file
with
1 additions
and
8 deletions
Show diff stats
app/models/gollum_wiki.rb
... | ... | @@ -2,14 +2,7 @@ class GollumWiki |
2 | 2 | |
3 | 3 | MARKUPS = { |
4 | 4 | "Markdown" => :markdown, |
5 | - "Textile" => :textile, | |
6 | - "RDoc" => :rdoc, | |
7 | - "Org-mode" => :org, | |
8 | - "Creole" => :creole, | |
9 | - "reStructuredText" => :rest, | |
10 | - "AsciiDoc" => :asciidoc, | |
11 | - "MediaWiki" => :mediawiki, | |
12 | - "Pod" => :post | |
5 | + "RDoc" => :rdoc | |
13 | 6 | } |
14 | 7 | |
15 | 8 | class CouldNotCreateWikiError < StandardError; end | ... | ... |