-
Notifications
You must be signed in to change notification settings - Fork 47
/
_config.yml
48 lines (45 loc) · 1.03 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
# Site settings
title: Sketch Developers
email: developers@sketchapp.com
url: "http://developer.sketchapp.com"
github_repo: https://github.com/BohemianCoding/developer.sketchapp.com
# Build settings
highlighter: pygments
markdown: redcarpet
redcarpet:
extensions: ['smart', 'no_intra_emphasis', 'fenced_code_blocks', 'autolink', 'with_toc_data']
sass:
style: compressed
exclude: [node_modules, gulpfile.js]
# Dynamic Content
collections:
reference:
output: true
permalink: /reference/:path/
code-examples:
output: true
permalink: /code-examples/:path/
introduction:
output: true
permalink: /introduction/:path/
# Defaults
defaults:
- scope:
path: ""
values:
layout: "single-page"
- scope:
path: "reference"
type: "reference"
values:
layout: "sidebar-page"
- scope:
path: "code-examples"
type: "code-examples"
values:
layout: "sidebar-page"
- scope:
path: "introduction"
type: "introduction"
values:
layout: "sidebar-page"