-
Notifications
You must be signed in to change notification settings - Fork 33
/
_config.yml
65 lines (60 loc) · 1.33 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
title: Harttle Land
description: 关于 Web、Linux、Vim、算法的笔记、教程和常见问题指南。
url: https://harttle.land
author: Harttle
email: [email protected]
twitterUrl: https://twitter.com/harttleharttle
logo: assets/img/favicon.png
keywords:
- Web
- C++
- Linux
- Vim
permalink: /:year/:month/:day/:title.html
paginate: 7
paginate_path: "page:num"
markdown: kramdown
markdown_ext: md
excerpt_separator: "<!--more-->"
highlighter: rouge
lsi: false
exclude: ['README.md', '.*', 'bin/', 'Gemfile', 'node_modules', '*.log', 'package.json', 'vendor']
kramdown:
input: GFM
hard_wrap: false
smart_quotes: ["apos", "apos", "quot", "quot"]
sass:
style: compressed
defaults:
-
scope:
path: "_drafts"
values:
layout: "blog"
-
scope:
path: "_posts"
values:
layout: "blog"
series:
'Effective-C++':
path: /effective-cpp.html
title: 细读 Effective C++
'Vim':
path: /vim-practice.html
title: 完全用 Vim 工作
'Git-Workflow':
path: /git-workflow.html
title: Git 实践指南
'跨域':
path: /cross-origin.html
title: 浏览器跨域/CORS
'浏览器渲染':
path: /browser-rendering.html
title: 理解浏览器渲染
plugins:
- jekyll-sitemap
- jekyll-feed
- jekyll-paginate
- jekyll-redirect-from
- jekyll-include-cache