Skip to content

Commit

Permalink
Use kramdown instead of redcarpet
Browse files Browse the repository at this point in the history
This was happening transparently at GitHub Pages anyway.
  • Loading branch information
kruton committed Nov 16, 2018
1 parent f38a777 commit e74b675
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
2.4.2
2.5.1
1 change: 0 additions & 1 deletion Gemfile
Expand Up @@ -2,7 +2,6 @@ source 'https://rubygems.org'
gem 'github-pages'
gem 'rake'
gem 'rqrcode_png'
gem 'redcarpet'

group :test do
gem 'html-proofer'
Expand Down
2 changes: 0 additions & 2 deletions Gemfile.lock
Expand Up @@ -228,7 +228,6 @@ GEM
rb-fsevent (0.10.3)
rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2)
redcarpet (3.4.0)
rouge (2.2.1)
rqrcode (0.10.1)
chunky_png (~> 1.0)
Expand Down Expand Up @@ -265,7 +264,6 @@ DEPENDENCIES
github-pages
html-proofer
rake
redcarpet
rqrcode_png

BUNDLED WITH
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -9,7 +9,7 @@ end

desc 'Build site with Jekyll'
task :build => :clean do
jekyll('build')
jekyll('build --profile')
end

desc 'Check site with html-proofer'
Expand Down
10 changes: 7 additions & 3 deletions _config.yml
@@ -1,8 +1,12 @@
# To prevent Jekyll from reading bundles on Travis CI
exclude: [vendor]
markdown: redcarpet
highlighter: pygments
repository: https://github.com/connectbot/connectbot/
highlighter: rouge
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
syntax_highlighter: rouge
repository: https://github.com/connectbot/connectbot.github.io.git
permalink: pretty
plugins:
- jekyll-sitemap

0 comments on commit e74b675

Please sign in to comment.