-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
230 lines (212 loc) · 6.99 KB
/
mkdocs.yml
File metadata and controls
230 lines (212 loc) · 6.99 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
site_name: ESO Logs Python
site_description: Python client library for ESO Logs API v2 - Analyze Elder Scrolls Online combat logs, track DPS/HPS metrics, build ESO tools. Features character rankings, report analysis, guild management.
site_url: https://esologs-python.readthedocs.io/
site_author: Nick Knowles
copyright: Copyright © 2024 - ESO Logs Python
repo_url: https://github.com/knowlen/esologs-python
repo_name: knowlen/esologs-python
edit_uri: edit/main/docs/
# Configuration
theme:
name: material
language: en
# Vim-style color scheme - dark only
palette:
# Dark mode only (vim style)
- scheme: slate
primary: custom
accent: custom
# Typography - Regular font for UI, monospace for code
font:
text: Inter
code: JetBrains Mono
# Features
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress # Show loading progress bar
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.prune # Reduce DOM size for better performance
- navigation.top
- navigation.footer
- search.highlight
- search.share
- search.suggest
- content.code.copy
- content.code.select
- content.code.annotate
- content.tabs.link
- content.tooltips
- content.action.edit
- content.action.view
- content.lazy # Lazy load images and iframes
# Icons
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
# Logo and favicon
logo: assets/logo.png
favicon: assets/logo.png
# Navigation
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Authentication: getting-started/authentication.md
- Quickstart: getting-started/quickstart.md
- Advanced Usage: getting-started/advanced-usage.md
- Direct GraphQL Access: getting-started/graphql-escape-hatch.md
- Troubleshooting: getting-started/troubleshooting.md
- API Reference:
- Game Data: api-reference/game-data.md
- Character Data: api-reference/character-data.md
- Guild Data: api-reference/guild-data.md
- World Data: api-reference/world-data.md
- Report Analysis: api-reference/report-analysis.md
- Report Search: api-reference/report-search.md
- Progress Race: api-reference/progress-race.md
- User Data: api-reference/user-data.md
- System Endpoints: api-reference/system.md
- Enums: api-reference/enums.md
- Development:
- Setup: development/setup.md
- Testing: development/testing.md
- Contributing: development/contributing.md
- Architecture: development/architecture.md
- Resilience & Retry: development/resilience-and-retry.md
- Changelog: development/changelog.md
# Extensions
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
title: On this page
# Python Markdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
# Emoji extension disabled due to YAML validation issues with Python tags
# - pymdownx.emoji:
# emoji_index: !!python/name:material.extensions.emoji.twemoji
# emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
# format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Plugins
plugins:
- search:
# Language setting for better tokenization
lang: en
# Custom separator for better code/API tokenization
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
# Search pipeline for better results
pipeline:
- stemmer # Reduces words to root form (searching/searches → search)
- stopWordFilter # Removes common words (the, is, at, which)
- trimmer # Removes whitespace
# Prebuild index for faster initial load
prebuild_index: true
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
remove_empty_space: true
reduce_boolean_attributes: true
remove_optional_attribute_quotes: false
- git-revision-date-localized:
type: date
fallback_to_build_date: true
enable_creation_date: false # Reduce git operations
# Customization
extra_css:
- stylesheets/vim-dark-theme.css
extra_javascript:
- javascripts/mathjax.js
- javascripts/search-shortcuts.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
- https://unpkg.com/mermaid@10/dist/mermaid.min.js
- javascripts/mermaid-init.js
# Additional configuration
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/knowlen/esologs-python
- icon: fontawesome/brands/python
link: https://pypi.org/project/esologs-python/
# SEO and Social Media
meta:
- property: og:type
content: website
- property: og:title
content: ESO Logs Python - Elder Scrolls Online Combat Log Analysis
- property: og:description
content: Python client library for ESO Logs API v2. Analyze Elder Scrolls Online combat logs, track DPS/HPS metrics, and build ESO tools.
- property: og:url
content: https://esologs-python.readthedocs.io/
- property: og:image
content: https://esologs-python.readthedocs.io/assets/logo.png
- name: twitter:card
content: summary
- name: twitter:title
content: ESO Logs Python
- name: twitter:description
content: Python client for ESO Logs API v2 - Elder Scrolls Online combat analysis
# Analytics disabled - no cookies used
# analytics:
# provider: google
# property: G-XXXXXXXXXX # Set via environment variable GOOGLE_ANALYTICS_KEY
# feedback:
# title: Was this page helpful?
# ratings:
# - icon: material/emoticon-happy-outline
# name: This page was helpful
# data: 1
# note: >-
# Thanks for your feedback!
# - icon: material/emoticon-sad-outline
# name: This page could be improved
# data: 0
# note: >-
# Thanks for your feedback! Help us improve this page by
# <a href="https://github.com/knowlen/esologs-python/issues/new/?title=[Feedback]+{title}+-+{url}" target="_blank" rel="noopener">telling us what you found lacking</a>.
generator: false
# Copyright already defined at top of file