Skip to content

Commit 424c856

Browse files
authored
updated config file
1 parent b25a68c commit 424c856

File tree

1 file changed

+72
-2
lines changed

1 file changed

+72
-2
lines changed

_config.yml

+72-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,73 @@
11
remote_theme: pages-themes/hacker@v0.2.0
2-
plugins:
3-
- jekyll-remote-theme
2+
3+
# Where things are
4+
source : .
5+
destination : ./_site
6+
collections_dir : .
7+
plugins_dir : _plugins # takes an array of strings and loads plugins in that order
8+
layouts_dir : _layouts
9+
data_dir : _data
10+
includes_dir : _includes
11+
sass:
12+
sass_dir: _sass
13+
collections:
14+
posts:
15+
output : true
16+
17+
# Handling Reading
18+
safe : false
19+
include : [".htaccess"]
20+
exclude : ["Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"]
21+
keep_files : [".git", ".svn"]
22+
encoding : "utf-8"
23+
markdown_ext : "markdown,mkdown,mkdn,mkd,md"
24+
strict_front_matter : false
25+
26+
# Filtering Content
27+
show_drafts : null
28+
limit_posts : 0
29+
future : false
30+
unpublished : false
31+
32+
# Plugins
33+
whitelist : []
34+
plugins : ["jekyll-remote-theme"]
35+
36+
# Conversion
37+
markdown : kramdown
38+
highlighter : rouge
39+
lsi : false
40+
excerpt_separator : "\n\n"
41+
incremental : false
42+
43+
# Serving
44+
detach : false
45+
port : 4000
46+
host : 127.0.0.1
47+
baseurl : "" # does not include hostname
48+
show_dir_listing : false
49+
50+
# Outputting
51+
permalink : date
52+
paginate_path : /page:num
53+
timezone : null
54+
55+
quiet : false
56+
verbose : false
57+
defaults : []
58+
59+
liquid:
60+
error_mode : warn
61+
strict_filters : false
62+
strict_variables : false
63+
64+
# Markdown Processors
65+
kramdown:
66+
auto_ids : true
67+
entity_output : as_char
68+
toc_levels : [1, 2, 3, 4, 5, 6]
69+
smart_quotes : lsquo,rsquo,ldquo,rdquo
70+
input : GFM
71+
hard_wrap : false
72+
footnote_nr : 1
73+
show_warnings : false

0 commit comments

Comments
 (0)