Added AsciiDoc support and changed to singlequotes

extension to https://github.com/gitlabhq/gitlabhq/pull/7568
This commit is contained in:
Christian Sarazin 2014-08-22 12:33:58 +02:00
parent abda2dab43
commit 4a14b5900b
1 changed files with 3 additions and 2 deletions

View File

@ -2,8 +2,9 @@ class ProjectWiki
include Gitlab::ShellAdapter
MARKUPS = {
"Markdown" => :markdown,
"RDoc" => :rdoc
'Markdown' => :markdown,
'RDoc' => :rdoc,
'AsciiDoc' => :asciidoc
}
class CouldNotCreateWikiError < StandardError; end