We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 647643e commit 0deeadfCopy full SHA for 0deeadf
git-wiki.rb
@@ -7,7 +7,7 @@
7
grit
8
haml
9
sass
10
-bluecloth).each { |dependency| require dependency }
+redcloth).each { |dependency| require dependency }
11
12
begin
13
require 'thin'
@@ -17,7 +17,7 @@
17
18
class String
19
def to_html
20
- BlueCloth.new(self).to_html
+ RedCloth.new(self).to_html
21
end
22
23
def linkify
@@ -130,7 +130,7 @@ def commit_message
130
131
configure do
132
GitRepository = ENV['GIT_WIKI_REPO'] || File.join(ENV['HOME'], 'wiki')
133
- PageExtension = '.markdown'
+ PageExtension = '.textile'
134
Homepage = 'Home'
135
set_option :haml, :format => :html4,
136
:attr_wrapper => '"'
0 commit comments