blob: 6273648bba7d6e7fc18e7585b8e6c59bf836ff8d (
plain)
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
|
# NOTE:
# some of the settings in this file get overwritten in later config
# files like _prod.yml, _dev.yml, and _defaults.yml
# =======
# Site settings
# =======
title_prefix: "AGL Developer Site - "
title: " "
title_suffix: " -"
url: "http://docs.automotivelinux.org" # the base hostname & protocol
description: AGL (Automotive Grade Linux) Developer Website
baseurl: "" # the subpath of the site, e.g. /blog; NOTE: no trailing slash
docsurl: "/docs" # docsearch entry point
rss_path: /misc/feed.xml
copyright_date: "2015-2019"
excerpt_separator: <!--more-->
# the version to which /latest/ points
# NOTE:
# this value gets overwritten in _version.yml, which is a generated file
latest_docs_version: master # overloaded by AppDefaults.js
# the docs version that is shown by default when clicking on docs links on the site
default_linked_docs_version: latest
# the language that serves as the source for the translations
src_language: en
# NOTE:
# this value _might_ get overwritten on some pages;
# see _defaults.yml, which is a generated file
language: en
# Note: I did not find a way to have more than one SASS dir in search path
sass:
sass_dir: static/styles/scss
# style : compressed
urls:
edit_git : https://github.com/automotive-grade-linux/docs-agl/blob/master/site/
logo:
navbar : /static/img/branding/agl_title_793x211.png
full : /static/img/branding/agl_827x576.png
underconstruction: /static/img/under-construction.png
message:
indev : "Draft version of documentation under development may change!"
#ganalytics: xxxxxxxx
# NOTE:
# this value gets overwritten in _defaults.yml, which is a generated file
defaults:
# =======
# Build settings
# =======
source: www # overloaded by AppDefaults.js
destination: build-dev # overloaded by AppDefaults.js
# don't erase these files in the output directory
keep_files: [".git", ".svn", "wiki-images", "images", "downloads"]
lsi: false # don't produce an index for related posts
safe: false # disables plugins
# this is default github rendering engine
markdown: kramdown
kramdown:
input: GFM
hard_wrap: false
syntax_highlighter: rouge
toc_levels: "2,3"
graph: # ~~~ UML-style-class
def_style: simple
tag_uml : UML
tag_flow : FLOW
debug : false
# exclude these directories from the build
exclude:
- static/css-src
#algolia: # https://community.algolia.com/docsearch/
# index : "automotivelinux"
# apikey: "edd30bcff9f6df4b095c41cba3e5a418"
#disqus: # check https://disqus.com/admin
# name: "docsiotbzh"
# devmode: 0
twitter:
hashtag: autogradelinux
widgetid: 629424968011386884
irc:
host: https://webchat.freenode.net/
channel: "#automotive"
linkto:
askbot : https://ask.automotivelinux.org/
account : https://identity.linuxfoundation.org/
jira_base : https://jira.automotivelinux.org/
jira_project: https://jira.automotivelinux.org/browse/SPEC/?selectedTab=com.atlassian.jira.jira-projects-plugin:summary-panel
jira_issues : https://jira.automotivelinux.org/issues/?jql=project%3DSPEC
code_contrib: https://git.automotivelinux.org/gerrit/#/q/status:open
mail_lists : https://lists.linuxfoundation.org/mailman/listinfo/automotive-discussions
|