Skip to content

Commit 3eea889

Browse files
committed
add config
1 parent ba89ccd commit 3eea889

File tree

1 file changed

+141
-0
lines changed

1 file changed

+141
-0
lines changed

_config.yml

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
Where things are
2+
source : .
3+
destination : ./_site
4+
collections_dir : .
5+
plugins_dir : _plugins # takes an array of strings and loads plugins in that order
6+
layouts_dir : _layouts
7+
data_dir : _data
8+
includes_dir : _includes
9+
sass:
10+
sass_dir: _sass
11+
collections:
12+
posts:
13+
output : true
14+
15+
# Handling Reading
16+
safe : false
17+
include : [".htaccess"]
18+
exclude : ["Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"]
19+
keep_files : [".git", ".svn"]
20+
encoding : "utf-8"
21+
markdown_ext : "markdown,mkdown,mkdn,mkd,md"
22+
strict_front_matter : false
23+
24+
# Filtering Content
25+
show_drafts : null
26+
limit_posts : 0
27+
future : false
28+
unpublished : false
29+
30+
# Plugins
31+
whitelist : []
32+
plugins : []
33+
34+
# Conversion
35+
markdown : kramdown
36+
highlighter : rouge
37+
lsi : false
38+
excerpt_separator : "\n\n"
39+
incremental : false
40+
41+
# Serving
42+
detach : false
43+
port : 4000
44+
host : 127.0.0.1
45+
baseurl : "" # does not include hostname
46+
show_dir_listing : false
47+
48+
# Outputting
49+
permalink : date
50+
paginate_path : /page:num
51+
timezone : null
52+
53+
quiet : false
54+
verbose : false
55+
defaults : []
56+
57+
liquid:
58+
error_mode : warn
59+
strict_filters : false
60+
strict_variables : false
61+
62+
# Markdown Processors
63+
kramdown:
64+
auto_ids : true
65+
entity_output : as_char
66+
toc_levels : [1, 2, 3, 4, 5, 6]
67+
smart_quotes : lsquo,rsquo,ldquo,rdquo
68+
input : GFM
69+
hard_wrap : false
70+
footnote_nr : 1
71+
show_warnings : false Where things are
72+
source : .
73+
destination : ./_site
74+
collections_dir : .
75+
plugins_dir : _plugins # takes an array of strings and loads plugins in that order
76+
layouts_dir : _layouts
77+
data_dir : _data
78+
includes_dir : _includes
79+
sass:
80+
sass_dir: _sass
81+
collections:
82+
posts:
83+
output : true
84+
85+
# Handling Reading
86+
safe : false
87+
include : [".htaccess"]
88+
exclude : ["Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"]
89+
keep_files : [".git", ".svn"]
90+
encoding : "utf-8"
91+
markdown_ext : "markdown,mkdown,mkdn,mkd,md"
92+
strict_front_matter : false
93+
94+
# Filtering Content
95+
show_drafts : null
96+
limit_posts : 0
97+
future : false
98+
unpublished : false
99+
100+
# Plugins
101+
whitelist : []
102+
plugins : []
103+
104+
# Conversion
105+
markdown : kramdown
106+
highlighter : rouge
107+
lsi : false
108+
excerpt_separator : "\n\n"
109+
incremental : false
110+
111+
# Serving
112+
detach : false
113+
port : 4000
114+
host : 127.0.0.1
115+
baseurl : "" # does not include hostname
116+
show_dir_listing : false
117+
118+
# Outputting
119+
permalink : date
120+
paginate_path : /page:num
121+
timezone : null
122+
123+
quiet : false
124+
verbose : false
125+
defaults : []
126+
127+
liquid:
128+
error_mode : warn
129+
strict_filters : false
130+
strict_variables : false
131+
132+
# Markdown Processors
133+
kramdown:
134+
auto_ids : true
135+
entity_output : as_char
136+
toc_levels : [1, 2, 3, 4, 5, 6]
137+
smart_quotes : lsquo,rsquo,ldquo,rdquo
138+
input : GFM
139+
hard_wrap : false
140+
footnote_nr : 1
141+
show_warnings : false

0 commit comments

Comments
 (0)