Skip to content

Commit 8f4b924

Browse files
authored
Migrate from redcarpet to kramdown (#26)
* Replace Redcarpet with Kramdown * Remove Redcarpet extensions * Remove Pygments highlighter
1 parent 8160253 commit 8f4b924

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ group :jekyll_plugins do
88
gem "jekyll-sitemap"
99
end
1010

11-
gem "redcarpet"
12-
gem 'pygments.rb'
11+
gem "kramdown"
1312
gem 'jemoji'
1413

1514
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem

_config.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@ google_analytics: UA-165164055-1 # out your google-analytics code
1616

1717
# Build settings
1818
future: true
19-
markdown: redcarpet
20-
highlighter: pygments
21-
redcarpet:
22-
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "strikethrough", "superscript"]
19+
markdown: kramdown
2320

2421
paginate: 5
2522
paginate_path: "/posts/page:num/"

0 commit comments

Comments
 (0)