-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path_config.yml
64 lines (59 loc) · 2.24 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
# Blog config
theme: jekyll-theme-minimal
title: "Duality Docs"
description: "Developer manual for the Duality game engine"
# google_analytics: UA-39997821-2
repository: 'AdamsLair/duality-docs'
# Empty base URL for custom domain 'docs.duality2d.net' instead of 'adamslair.github.io/duality-docs'
# baseurl: ''
# Now back to the *.github.io/* URL
baseurl: '/duality-docs'
# External links, to be displayed in the top
links:
- title: 'About Duality'
url: 'https://adamslair.github.io/duality'
- title: 'Chat'
url: 'https://discord.gg/JZxzXrzXc6'
# Descriptions for the categories we have, used for top-level display
categoryDescriptions:
- id: 'introduction'
title: 'Introduction'
- id: 'tutorials'
title: 'Tutorials'
- id: 'basics'
title: 'Basic Topics'
- id: 'advanced'
title: 'Advanced Topics'
- id: 'development'
title: 'Development'
# Support for GitHub-flavored markdown Emoji
plugins:
- jemoji
# Default values for front matter variables
defaults:
- scope: # Applies to all pages
path: ""
type: "pages"
values:
# Which layout HTML to use
layout: "default"
# The display title of the page
title:
# Parent page, as path without extension relative to the pages version root folder.
# Example: 'Foo/Bar/SomePage' on a v2 page would resolve to '/pages/v2/Foo/Bar/SomePage.html'
parent:
# The category this page belongs to. If no parent is set, the page will be displayed
# under this category in the top-level chapter overview.
category:
# Whether this page should not use an auto-generated table of contents in the sidebar
# and instead display nav links to its sibling pages.
notoc: false
# The order in which sidebar page links are displayed. Higher values will move this page
# further down, lower values will move it further up.
displayOrder: 0
# Version identifier of this page, e.g. 'v2', 'v3' or similar
version:
# An array of paths under which previous versions of this page were found. Paths are formatted
# without extension, and relative to the pages version root folder.
# Example: 'Foo/Bar/SomePage' to a v2 page would resolve to '/pages/v2/Foo/Bar/SomePage.html'
formerPaths: []