Skip to content

Commit e74b675

Browse files
committed
Use kramdown instead of redcarpet
This was happening transparently at GitHub Pages anyway.
1 parent f38a777 commit e74b675

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.2
1+
2.5.1

Gemfile

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ source 'https://rubygems.org'
22
gem 'github-pages'
33
gem 'rake'
44
gem 'rqrcode_png'
5-
gem 'redcarpet'
65

76
group :test do
87
gem 'html-proofer'

Gemfile.lock

-2
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,6 @@ GEM
228228
rb-fsevent (0.10.3)
229229
rb-inotify (0.9.10)
230230
ffi (>= 0.5.0, < 2)
231-
redcarpet (3.4.0)
232231
rouge (2.2.1)
233232
rqrcode (0.10.1)
234233
chunky_png (~> 1.0)
@@ -265,7 +264,6 @@ DEPENDENCIES
265264
github-pages
266265
html-proofer
267266
rake
268-
redcarpet
269267
rqrcode_png
270268

271269
BUNDLED WITH

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ end
99

1010
desc 'Build site with Jekyll'
1111
task :build => :clean do
12-
jekyll('build')
12+
jekyll('build --profile')
1313
end
1414

1515
desc 'Check site with html-proofer'

_config.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# To prevent Jekyll from reading bundles on Travis CI
22
exclude: [vendor]
3-
markdown: redcarpet
4-
highlighter: pygments
5-
repository: https://github.com/connectbot/connectbot/
3+
highlighter: rouge
4+
markdown: kramdown
5+
kramdown:
6+
input: GFM
7+
auto_ids: true
8+
syntax_highlighter: rouge
9+
repository: https://github.com/connectbot/connectbot.github.io.git
610
permalink: pretty
711
plugins:
812
- jekyll-sitemap

0 commit comments

Comments
 (0)