-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
99 lines (96 loc) · 1.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Site settings
title: MaPan - Blog
url: https://mapan1984.github.io
enforce_ssl: mapan1984.github.io
email: mapan1984@outlook.com
github_username: mapan1984
description: > # this means to ignore newlines until "baseurl:"
MaPan's personal blog.
# Build settings
#
## markdown
markdown: kramdown
kramdown:
input: GFM
extensions:
- autolink
- footnotes
- smart
enable_coderay: true
syntax_highlighter: rouge
syntax_highlighter_opts:
coderay_line_numbers: ''
#markdown: redcarpet
#redcarpet:
# extensions: ["fenced_code_blocks", "hard_wrap","autolink", "tables",
# "strikethrough", "superscript", "with_toc_data", "highlight",
# "prettify","no_intra_emphasis", "smart"]
#
## sass
sass:
sass_dir: blog/assets/styles/_sass
style: compressed
#
## paginator
plugins: [jekyll-paginate]
paginate: 15
paginate_path: "/page:num/"
#
## permalink
permalink: pretty
#
## 只重建修改过的posts和pages
# incremental: true
#
## serving
baseurl: "" # the subpath of your site, e.g. /blog
host: 127.0.0.1
port: 5000
# defaults
defaults:
-
scope:
path: "_posts"
values:
layout: "post"
comments: true
-
scope:
path: "_posts/algorithm"
values:
categories: ["Algorithm"]
-
scope:
path: "_posts/manual"
values:
categories: ["Manual"]
-
scope:
path: "_posts/network"
values:
categories: ["Network"]
-
scope:
path: "_posts/note"
values:
categories: ["Note"]
-
scope:
path: "_posts/program"
values:
categories: ["Program"]
-
scope:
path: "_posts/system"
values:
categories: ["System"]
-
scope:
path: "_posts/service"
values:
categories: ["Service"]
-
scope:
path: "_posts/tool"
values:
categories: ["Tool"]