forked from dart-lang/site-www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
134 lines (120 loc) · 3.86 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Site settings
title: Dart
description: Dart is a platform for building structured apps. It includes a language, a VM, libraries, tools, and compilers to many targets, including JavaScript.
url: https://dart.dev
dev-url: https://dartlang-org-dev.firebaseapp.com
repo:
this: https://github.com/dart-lang/site-www
shared: &repo-shared https://github.com/dart-lang/site-shared
branch: master
port: 4000
# Global variables
# use case:
# {{site.flutter}}/docs
dart-site: ''
prev-url: https://v1-dartlang-org.firebaseapp.com
angulardart: https://angulardart.xyz
dart_vm: /server
flutter: https://flutter.dev
dart_api: https://api.dart.dev
flutter_api: https://api.flutter.dev
pub: https://pub.dev
pub-api: https://pub.dev/documentation
pub-pkg: https://pub.dev/packages
lints: https://dart-lang.github.io/linter/lints
dartpad: https://dartpad.dev
dartpad-embed: https://dartpad.dev/embed-dart.html
dartpad-embed-html: https://dartpad.dev/embed-html.html
dartpad-embed-inline: https://dartpad.dev/embed-inline.html
news: https://news.dartlang.org
group: https://groups.google.com/a/dartlang.org
show_banner: true
collections:
articles:
output: true
permalink: /articles/:path
tutorials:
output: true
permalink: /tutorials/:path
guides:
output: true
permalink: /guides/:path
defaults:
- scope:
path: ''
# type: pages
values:
layout: default
toc: true
- scope:
path: ''
type: tutorials
values:
layout: tutorial
custom:
downloads:
dartarchive-be-url-prefix: https://storage.googleapis.com/dart-archive/channels/be/raw
dartarchive-dev-url-prefix: https://storage.googleapis.com/dart-archive/channels/dev/release
dartarchive-stable-url-prefix: https://storage.googleapis.com/dart-archive/channels/stable/release
binaries:
- os: windows
name: Windows
ext: zip
editor-ext: zip
- os: macos
name: Mac
ext: zip
editor-ext: zip
- os: linux
name: Linux
ext: zip
editor-ext: zip
# Build settings
assets:
source_maps: false
sources:
- _shared/_assets
- _shared/_assets/css
future: true # In support of https://github.com/dart-lang/site-www/issues/1111
plugins: [jekyll-toc]
source: src
strict_front_matter: true
# `symlinked-sources` can refer to individual files or directories
# under `src` that are symlinked to somewhere outside `src`, or it can
# refer to the root folder of the symlinked content (like `site-shared/src`):
symlinked-sources: [site-shared/src]
# Increment this global og:image URL version number (used as a query parameter)
# when you update any og:image file. (Also increment the corresponding number
# in the `firebase.json` redirect rule.)
og_image_vers: "?2"
toc:
min_level: 2
max_level: 3
no_toc_section_class: no_toc_section # ignore if in no_toc_section element
## Site-wide shorthands
os-list: [Windows, macOS, Linux]
alert:
important: >-
<aside class="alert alert-warning" role="alert" markdown="1">
<i class="fas fa-exclamation-circle"></i> **Important:**
info: >-
<aside class="alert alert-info" role="alert" markdown="1">
<i class="fas fa-info-circle"></i>
note: >-
<aside class="alert alert-info" role="alert" markdown="1">
<i class="fas fa-info-circle"></i> **Note:**
version-note: >-
<aside class="alert alert-info" role="alert" markdown="1">
<i class="fas fa-code-branch"></i> **Version note:**
secondary: >-
<aside class="alert alert-secondary" role="alert" markdown="1">
tip: >-
<aside class="alert alert-success" role="alert" markdown="1">
<i class="far fa-lightbulb"></i> **Tip:**
warn: >-
<aside class="alert alert-warning" role="alert" markdown="1">
<i class="fas fa-exclamation-triangle"></i>
warning: >-
<aside class="alert alert-warning" role="alert" markdown="1">
<i class="fas fa-exclamation-triangle"></i> **Warning:**
end: </aside>