forked from szabolcstoth/robotframework-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
99 lines (89 loc) · 2.59 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
# Project information
site_name: Robot Framework - Learn the basics
site_url: http://dev.szabolcstoth.eu/robotframework-basics/
site_author: Szabolcs Toth
site_description: >-
A tutorial page to provide a crash course for anyone interested in
test automation, or more specifically, Robot Framework.
# Repository
repo_name: szabolcstoth/robotframework-basics
repo_url: https://github.com/szabolcstoth/robotframework-basics
# Copyright
copyright: Copyright © 2025 Szabolcs Toth
# Configuration
theme:
name: material
features:
- content.code.copy
static_templates:
- 404.html
palette:
- scheme: slate
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
primary: teal
accent: teal
- scheme: default
toggle:
icon: material/toggle-switch
name: Switch to dark mode
primary: teal
accent: teal
# Plugins
plugins:
- git-revision-date-localized
- minify:
minify_html: true
- search
# Customization
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/szabolcstoth
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/szabolcstoth/
analytics:
provider: google
property: G-KR9DNJTQLW
extra_css:
- stylesheets/admonition.css
# Extensions
markdown_extensions:
- admonition
- codehilite
- footnotes
- pymdownx.details
- pymdownx.highlight:
linenums: true
- pymdownx.superfences
# Page tree
nav:
- "Introduction": "index.md"
- "First steps": "first-steps.md"
- "01 - Greetings":
- 01-greetings/01-your-first-test-case.md
- 01-greetings/02-put-your-name-in-a-variable.md
- 01-greetings/03-create-your-first-keyword.md
- 01-greetings/04-extend-your-first-keyword.md
- 01-greetings/05-create-a-common-resource-file.md
- 01-greetings/06-additional-settings-in-test-case-table.md
- 01-greetings/07-global-suite-setup-and-suite-teardown.md
- 01-greetings/08-global-variables.md
- "02 - Classroom":
- 02-classroom/01-lists.md
- 02-classroom/02-file-handling.md
- 02-classroom/03-evaluate.md
- 02-classroom/04-class-based-libraries.md
- 02-classroom/05-module-based-libraries.md
- "03 - Remote":
- 03-remote/00-set-up-remote-host.md
- 03-remote/01-execute-command.md
- 03-remote/02-package-management.md
- 03-remote/03-do-not-hardcode-passwords.md
- "04 - Advanced":
- 04-advanced/01-listeners.md
- 04-advanced/02-list-test-cases.md
- "05 - Tools":
- 05-tools/01-libdoc.md
- 05-tools/02-robocop.md