-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathmkdocs.yml
More file actions
98 lines (95 loc) · 3.11 KB
/
mkdocs.yml
File metadata and controls
98 lines (95 loc) · 3.11 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
# Format documented here
# http://www.mkdocs.org/user-guide/configuration/
site_url: http://utPLSQL.org/
site_name: utPLSQL-framework
site_description: utPLSQL Documenation Powerful Unit Testing Framework for Oracle PL/SQL
copyright: Copyright © 2016 - 2017 utPLSQL Team
extra_css:
- stylesheets/extra.css
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/lightbulb
name: Switch to light mode
logo: assets/icon-transparent.png
favicon: assets/favicon.png
features:
- navigation.instant # disable for offline docs
# - navigation.indexes
- navigation.tabs
- navigation.tracking
- toc.follow
- toc.integrate
- search.suggest
- search.highlight
extra:
# homepage: http://jgebal.github.io/
# homepage: http://utPLSQL.org/
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/utPLSQL
- icon: fontawesome/brands/slack
link: https://join.slack.com/t/utplsql/shared_invite/zt-xwm68udy-4cF_3PNEyczYEbWr38W5ww
- icon: fontawesome/brands/github
link: https://github.com/utPLSQL
- icon: fontawesome/solid/envelope
link: mailto:utPLSQL@utPLSQL.org
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
version: # disable for offline docs
provider: mike # disable for offline docs
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- toc:
permalink: true
use_directory_urls: false
strict: true
plugins:
- search
- mike
- git-revision-date-localized: # disable for offline docs
enable_creation_date: true # disable for offline docs
type: datetime # disable for offline docs
nav:
- Home: index.md
- User Guide:
- index.md
- Installation: userguide/install.md
- Getting Started: userguide/getting-started.md
- Annotations: userguide/annotations.md
- Expectations: userguide/expectations.md
- Running unit tests: userguide/running-unit-tests.md
- Testing best pracitces: userguide/best-practices.md
- Upgrade utPLSQL: userguide/upgrade.md
- Reporting:
- Using reporters: userguide/reporters.md
- Code coverage: userguide/coverage.md
- Error handling and reporting: userguide/exception-reporting.md
- About:
- Project Details: about/project-details.md
- License: about/license.md
- Support: about/support.md
- Authors: about/authors.md
- Contributing: about/CONTRIBUTING.md