Skip to content

Commit

Permalink
Changed the markdown interpreter from RedCarpet to kramdown
Browse files Browse the repository at this point in the history
  • Loading branch information
agongdai committed Oct 10, 2015
1 parent ec71241 commit cdcfff8
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 53 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ gem 'middleman-gh-pages', '~> 0.0.3'
gem 'middleman-syntax', '~> 2.0.0'
gem 'middleman-autoprefixer', '~> 2.4.4'
gem 'rouge', '~> 1.9.0'
gem 'redcarpet', '~> 3.3.2'
gem 'redcarpet', '~> 3.3.3'

gem 'rake', '~> 10.4.2'
gem 'therubyracer', '~> 0.12.1', platforms: :ruby
5 changes: 3 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ GEM
tilt
hike (1.2.3)
hitimes (1.2.3)
hitimes (1.2.3-x86-mingw32)
hooks (0.4.0)
uber (~> 0.0.4)
i18n (0.7.0)
Expand Down Expand Up @@ -98,7 +99,7 @@ GEM
rb-fsevent (0.9.5)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
redcarpet (3.3.2)
redcarpet (3.3.3)
ref (1.0.5)
rouge (1.9.0)
sass (3.4.14)
Expand Down Expand Up @@ -137,7 +138,7 @@ DEPENDENCIES
middleman-gh-pages (~> 0.0.3)
middleman-syntax (~> 2.0.0)
rake (~> 10.4.2)
redcarpet (~> 3.3.2)
redcarpet (~> 3.3.3)
rouge (~> 1.9.0)
therubyracer (~> 0.12.1)

Expand Down
3 changes: 2 additions & 1 deletion config.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Markdown
set :markdown_engine, :redcarpet
# set :markdown_engine, :redcarpet
set :markdown_engine, :kramdown
set :markdown,
fenced_code_blocks: true,
smartypants: true,
Expand Down
Loading

0 comments on commit cdcfff8

Please sign in to comment.