From 777e31f7ef4d1b31663341f62f38dbb1ad9cb58a Mon Sep 17 00:00:00 2001 From: yanhaijing Date: Tue, 16 Feb 2016 18:39:39 +0800 Subject: [PATCH] fix jekyll 3.0 path error in jekyll 2.x `permalink: /:categories/:year/:month/:day/:title` = `/categories/year/month/day/title/` but in jekyll 3.x `permalink: /:categories/:year/:month/:day/:title` = `/categories/year/month/day/title` add / to fix it --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index c6deca5bc5..b8ace2c23b 100644 --- a/_config.yml +++ b/_config.yml @@ -1,6 +1,6 @@ # This is the default format. # For more see: http://jekyllrb.com/docs/permalinks/ -permalink: /:categories/:year/:month/:day/:title +permalink: /:categories/:year/:month/:day/:title/ exclude: [".rvmrc", ".rbenv-version", "README.md", "Rakefile", "changelog.md"] highlighter: pygments