This repository was archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmkdocs.yml
More file actions
107 lines (99 loc) · 2.91 KB
/
mkdocs.yml
File metadata and controls
107 lines (99 loc) · 2.91 KB
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
# Project information
site_name: 'Stein Documentation'
site_description: 'A linter for config files with a customizable rule set'
site_author: 'Masaki ISHIYAMA'
site_url: 'https://b4b4r07.github.io/stein/'
theme:
name: 'material'
palette:
primary: 'blue grey'
accent: 'blue grey'
logo:
icon: 'school'
favicon: 'assets/images/favicon.png'
# feature:
# tabs: true
google_analytics:
- 'UA-44183504-3'
- 'auto'
markdown_extensions:
- fontawesome_markdown
- meta
- codehilite
- admonition
- toc:
permalink: "#"
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink:
repo_url_shortener: true
repo_url_shorthand: true
social_url_shorthand: true
user: b4b4r07
repo: stein
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Customization
extra:
social:
- type: globe
link: https://tellme.tokyo
- type: github
link: https://github.com/b4b4r07
- type: twitter
link: https://twitter.com/b4b4r07
extra_css:
- "https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css"
# Repository
repo_name: b4b4r07/stein
repo_url: https://github.com/b4b4r07/stein
edit_uri: edit/master/docs
# Copyright
copyright: 'Copyright © 2019 Masaki ISHIYAMA'
# Pages and navigation pane
nav:
- Concepts:
- Policy as Code: concepts/policy-as-code.md
- Policy: concepts/policy.md
- Configuration:
- Introduction: configuration/_index.md
- configuration/load.md
- Policy:
- Rules: configuration/policy/rules.md
- Config: configuration/policy/config.md
- Variables: configuration/policy/variables.md
- Functions: configuration/policy/functions.md
- Syntax:
- Introduction: configuration/syntax/_index.md
- Interpolation: configuration/syntax/interpolation.md
- Built-in Funtions:
- color: configuration/syntax/functions/color.md
- exist: configuration/syntax/functions/exist.md
- ext: configuration/syntax/functions/ext.md
- glob: configuration/syntax/functions/glob.md
- grep: configuration/syntax/functions/grep.md
- jsonpath: configuration/syntax/functions/jsonpath.md
- lookuplist: configuration/syntax/functions/lookuplist.md
- match: configuration/syntax/functions/match.md
- pathshorten: configuration/syntax/functions/pathshorten.md
- wc: configuration/syntax/functions/wc.md
- configuration/syntax/custom-functions.md
- Getting Started:
- intro/install.md
- intro/rules.md
- intro/run.md
- Commands (CLI):
- commands/_index.md
- commands/apply.md
- commands/fmt.md