-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy path_config.yml
executable file
·89 lines (68 loc) · 1.98 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
# Site title and subtitle. This is used in _includes/header.html
title: 'Developer '
subtitle: ''
# if you wish to integrate disqus on pages set your shortname here
disqus_shortname: 'developeravalaracom'
# if you use google analytics, add your tracking id here
google_analytics_id: ''
# Enable/show navigation. There are there options:
# 0 - always hide
# 1 - always show
# 2 - show only if posts are present
navigation: 2
host: 0.0.0.0
# URL to source code, used in _includes/footer.html
codeurl: 'https://github.com/avalara/developer-dot'
# Default categories (in order) to appear in the navigation
sections: [
['doc', 'Documentation'],
['tut', 'Tutorial'],
['ref', 'Reference'],
['dev', 'Developers'],
['post', 'Posts']
]
gems:
- algoliasearch-jekyll
- jekyll-paginate
algolia:
application_id: '19A6FWAAB3'
index_name: 'developer-dot'
settings:
attributesForFaceting: ['doctype', 'product']
# Keep as an empty string if served up at the root. If served up at a specific
# path (e.g. on GitHub pages) leave off the trailing slash, e.g. /my-project
baseurl: ''
# Syntax highlighting
highlighter: rouge
# Since these are pages, it doesn't really matter
future: true
# Exclude non-site files
exclude: [node_modules, dynamic, LICENSE, README.md, package.json, s3_website.yml, Gemfile, Gemfile.lock, _test, scripts]
# Use the kramdown Markdown renderer
markdown: kramdown
redcarpet:
extensions: [
'no_intra_emphasis',
'fenced_code_blocks',
'autolink',
'strikethrough',
'superscript',
'with_toc_data',
'tables',
'hardwrap'
]
paginate: 8
paginate_path: "/blog/page:num/"
# applies to _posts only for some reason
permalink: blog/:year/:month/:day/:title/
excerpt_separator: <!--more-->
collections:
permalink: :basename/
## Jekyll Archives configuration
jekyll-archives:
enabled:
- categories
layouts:
category: archive-tag
permalinks:
category: 'blog/:name/'