forked from ArnaudBuchholz/ui5-test-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
78 lines (73 loc) · 2.05 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
site_name: UI5 Test Runner
site_url: "https://ArnaudBuchholz.github.io/ui5-test-runner/" # required for working 404 page
repo_name: "ArnaudBuchholz/ui5-test-runner"
repo_url: "https://github.com/ArnaudBuchholz/ui5-test-runner"
edit_uri: tree/main/docs/
docs_dir: "docs" # default
site_dir: "site" # default
nav:
- Home: README.md
- Command line usage: usage.md
- Testing a "remote" application: testing.md
- Coverage extraction: coverage.md
- Serving and testing the application (a.k.a. legacy mode): legacy.md
- Configuration file: configuration.md
- ⚠️ Warnings: warnings.md
- Tips & tricks: tipsNtricks.md
- How to demo: demo.md
- Browser instantiation command: browser.md
- Automation Libraries:
- puppeteer: puppeteer.md
- jsdom: jsdom.md
- playwright: playwright.md
- selenium-webdriver: selenium-webdriver.md
- webdriver.io: webdriverio.md
- Mapping v1 settings to v2: mapping_v1_v2.md
theme:
name: "material"
palette:
primary: "blue"
accent: "blue"
# logo: "images/logo.svg"
# favicon: "images/favicon.png"
font: false
features:
- navigation.expand
- content.code.copy
# extra_css:
# - 'stylesheets/extra.css'
plugins:
- search
- minify:
minify_html: true
markdown_extensions:
- admonition
- attr_list
- codehilite:
guess_lang: false
- toc:
permalink: true
# PyMdown Extensions Documentation: https://facelessuser.github.io/pymdown-extensions/extensions/betterem/
- pymdownx.betterem:
smart_enable: all
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.keys
- pymdownx.smartsymbols
- pymdownx.tabbed
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.caret
- pymdownx.snippets
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
dev_addr: "localhost:8000"