forked from matt-curtis/developer.sketchapp.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
98 lines (92 loc) · 1.74 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
# Site settings
title: Sketch Developers
email: [email protected]
url: "http://developer.sketchapp.com"
github_repo: https://github.com/BohemianCoding/developer.sketchapp.com
# Build settings
kramdown:
input: GFM
auto_ids: true
smart_quotes: lsquo,rsquo,ldquo,rdquo
syntax_highlighter: rouge
syntax_highlighter_opts:
fenced_code_blocks: true
default_lang: javascript
span:
disable: true
gems:
- jekyll-seo-tag
- jekyll-sitemap
- jekyll-paginate
# jekyll-paginate
paginate: 5
paginate_path: "/blog/page:num/"
sass:
style: compressed
exclude:
- node_modules
- gulpfile.js
- package.json
- .sass-cache
- README.md
# Dynamic Content
collections:
classes:
output: true
permalink: /reference/class/:path/
actions:
output: true
permalink: /reference/action/:path/
code-examples:
output: true
permalink: /examples/code/:path/
introduction:
output: true
permalink: /introduction/:path/
posts:
output: true
permalink: /blog/:path/
plugins:
output: true
permalink: /examples/plugins/:path/
# Defaults
defaults:
-
scope:
path: ""
values:
layout: "single-page"
-
scope:
type: "classes"
values:
layout: "sidebar-page"
script: "/js/search.js"
-
scope:
type: "actions"
values:
layout: "sidebar-page"
script: "/js/search.js"
-
scope:
type: "plugins"
values:
layout: "docco-page"
-
scope:
type: "code-examples"
values:
layout: "sidebar-page"
script: "/js/search.js"
-
scope:
type: "introduction"
values:
layout: "sidebar-page"
script: "/js/search.js"
-
scope:
type: "posts"
values:
layout: "post"