Skip to content

Commit 4cc4a2c

Browse files
Merge remote-tracking branch 'origin/master' into tags
2 parents 0ad5156 + 8f4b924 commit 4cc4a2c

File tree

4 files changed

+352
-6
lines changed

4 files changed

+352
-6
lines changed

Gemfile

+1-2
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

+4-4
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/"
@@ -32,6 +29,9 @@ plugins:
3229
include:
3330
- _pages
3431

32+
# To make endpoints for links and drop '.html' extensions
33+
permalink: /:title/
34+
3535
# Defaults
3636
defaults:
3737
# _posts

_layouts/home.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
layout: default
3+
permalink: '/'
34
---
45

56
<!-- Page Header -->

0 commit comments

Comments
 (0)