-
Notifications
You must be signed in to change notification settings - Fork 47
/
mkdocs.yml
138 lines (124 loc) · 4.31 KB
/
mkdocs.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
135
136
137
138
site_name: 'Image-Charts documentation'
site_author: 'François-Guillaume Ribreau'
site_url: "https://documentation.image-charts.com"
main_site_name: Image-Charts
main_site_url: "https://www.image-charts.com"
# Repository
# repo_name: image-charts/documentation
# repo_url: https://github.com/image-charts/documentation
edit_uri: "https://github.com/image-charts/documentation/edit/master/docs"
docs_dir: 'docs'
extra_css:
- _css/styles.css
extra_javascript:
- _js/editor.js
# do not use google analytics parameter, rely on google tag manager instead
# Copyright
# copyright: 'Copyright © Image-Charts'
nav:
- Getting started: index.md
- Bar Charts: bar-charts.md
- Line Charts: line-charts.md
- Sparkline Charts: /line-charts/#sparklines
- Scatter Charts: /line-charts/#scatter
- Pie Charts: pie-charts.md
- Doughnut Charts: /pie-charts#doughnut
- Polar Charts: polar-charts.md
- Radar Charts: radar-charts.md
- Bubble Charts: bubble-charts.md
- GraphViz Charts: graph-viz-charts.md
- Progress Bar Charts: progress-bar-charts.md
- QR Codes: qr-codes.md
- Chart.js: chart.js.md
- Reference:
- Chart Type: reference/chart-type.md
- Chart Size: reference/chart-size.md
- Data Format: reference/data-format.md
- Color Format: reference/color-format.md
- Title: reference/chart-title.md
- Grid Lines: reference/grid-lines.md
- Labels: reference/chart-label.md
- Markers : reference/markers.md
- Margins: reference/chart-margin.md
- Axis: reference/chart-axis.md
- Legend: reference/legend-text-and-style.md
- Font: reference/chart-font.md
- Background: reference/background-fill.md
- Gif animation: reference/animation.md
- Output Format: reference/output-format.md
- POST requests: reference/post-requests.md
- Retina support: reference/retina.md
- Localization: reference/localization.md
- Guides:
- How to setup a dependency graph in Google Sheets: guides/graph-in-google-sheets.md
- How to send charts to a Slack channel: guides/send-charts-to-slack.md
- How to generate image charts from Salesforce Apex language: guides/salesforce-apex-charts.md
- How to send a radar chart by email from typeform: guides/charts-from-typeform.md
- Gallery: gallery.md
- Enterprise: enterprise.md
- SDK & libraries: sdk-and-libraries.md
- On Premise: on-premise.md
- Errors: errors.md
- Limits and Quotas: limits-and-quotas.md
- Status Page: https://status.image-charts.com
- Changelog: https://headwayapp.co/image-charts-changelog
- Static Chart Editor: https://editor.image-charts.com
# Configuration
theme:
# https://github.com/squidfunk/mkdocs-material
name: "material"
custom_dir: "theme"
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
feature:
tabs: false
palette:
primary: indigo
accent: blue
font:
text: Roboto
code: Roboto Mono
favicon: 'logo/[email protected]'
logo: 'logo/[email protected]'
extra:
social:
- icon: "fontawesome/brands/github-alt"
link: "https://github.com/image-charts"
- icon: "fontawesome/brands/twitter"
link: "https://twitter.com/imagecharts"
- icon: "fontawesome/solid/envelope"
link: "mailto:[email protected]"
plugins:
- search
- minify:
minify_html: true
minify_js: true
htmlmin_opts:
remove_comments: true
js_files:
- _js/editor.js
# facelessuser.github.io/pymdown-extensions
# https://www.mkdocs.org/user-guide/configuration/#formatting-options
# https://github.com/facelessuser/pymdown-extensions/blob/master/mkdocs.yml#L96
markdown_extensions:
- pymdownx.inlinehilite
- pymdownx.emoji
# https://github.com/mkdocs/mkdocs/issues/777#issuecomment-308266201
- markdown_include.include:
base_path: docs
# https://facelessuser.github.io/pymdown-extensions/extensions/superfences/#nested-fence-format
- pymdownx.tabbed
- pymdownx.snippets:
base_path: docs/
- pymdownx.superfences:
preserve_tabs: true
- pymdownx.critic
- pymdownx.tilde
- pymdownx.tasklist
- pymdownx.smartsymbols
# https://squidfunk.github.io/mkdocs-material/extensions/admonition
- markdown.extensions.admonition
- markdown.extensions.attr_list