|
| 1 | +# Format documented here |
| 2 | +# http://www.mkdocs.org/user-guide/configuration/ |
| 3 | +# https://squidfunk.github.io/mkdocs-material/getting-started/ |
| 4 | +# See this document for list of plugins to disable for offline (local) documentation |
| 5 | +# https://squidfunk.github.io/mkdocs-material/setup/building-for-offline-usage/ |
| 6 | + |
| 7 | +edit_uri: "" |
| 8 | +site_url: http://utPLSQL.org/ |
| 9 | +site_name: utPLSQL-framework |
| 10 | +site_description: utPLSQL Ultimate Testing Framework for Oracle PL/SQL & SQL |
| 11 | +copyright: Copyright © 2016 - 2022 utPLSQL Team |
| 12 | +#repo_url: https://github.com/utPLSQL/utPLSQL # disable for offline docs |
| 13 | +extra_css: |
| 14 | + - stylesheets/extra.css |
| 15 | +theme: |
| 16 | + name: material |
| 17 | + palette: |
| 18 | + # Palette toggle for light mode |
| 19 | + - media: "(prefers-color-scheme: light)" |
| 20 | + scheme: default |
| 21 | + toggle: |
| 22 | + icon: material/lightbulb-outline |
| 23 | + name: Switch to dark mode |
| 24 | + # Palette toggle for dark mode |
| 25 | + - media: "(prefers-color-scheme: dark)" |
| 26 | + scheme: slate |
| 27 | + toggle: |
| 28 | + icon: material/lightbulb |
| 29 | + name: Switch to light mode |
| 30 | + logo: assets/icon-transparent.png |
| 31 | + favicon: assets/favicon.png |
| 32 | + features: |
| 33 | +# - navigation.instant # disable for offline docs |
| 34 | +# - navigation.indexes |
| 35 | + - navigation.tabs |
| 36 | + - navigation.tracking |
| 37 | + - toc.follow |
| 38 | + - toc.integrate |
| 39 | + - search.suggest |
| 40 | + - search.highlight |
| 41 | +extra: |
| 42 | +# homepage: http://jgebal.github.io/ |
| 43 | +# homepage: http://utPLSQL.org/ |
| 44 | + social: |
| 45 | + - icon: fontawesome/brands/twitter |
| 46 | + link: https://twitter.com/utPLSQL |
| 47 | + - icon: fontawesome/brands/slack |
| 48 | + link: https://join.slack.com/t/utplsql/shared_invite/zt-xwm68udy-4cF_3PNEyczYEbWr38W5ww |
| 49 | + - icon: fontawesome/brands/github |
| 50 | + link: https://github.com/utPLSQL |
| 51 | + - icon: fontawesome/solid/envelope |
| 52 | + link: mailto:utPLSQL@utPLSQL.org |
| 53 | + consent: |
| 54 | + title: Cookie consent |
| 55 | + description: >- |
| 56 | + We use cookies to recognize your repeated visits and preferences, as well |
| 57 | + as to measure the effectiveness of our documentation and whether users |
| 58 | + find what they're searching for. With your consent, you're helping us to |
| 59 | + make our documentation better. |
| 60 | +# version: # disable for offline docs |
| 61 | +# provider: mike # disable for offline docs |
| 62 | +markdown_extensions: |
| 63 | + - pymdownx.highlight: |
| 64 | + anchor_linenums: true |
| 65 | + - pymdownx.inlinehilite |
| 66 | + - pymdownx.snippets |
| 67 | + - pymdownx.superfences |
| 68 | + - pymdownx.caret |
| 69 | + - pymdownx.mark |
| 70 | + - pymdownx.tilde |
| 71 | + - toc: |
| 72 | + permalink: true |
| 73 | +use_directory_urls: false |
| 74 | +strict: true |
| 75 | + |
| 76 | +plugins: |
| 77 | +# - search # disable for offline docs |
| 78 | + - mike |
| 79 | +# - git-revision-date-localized: # disable for offline docs |
| 80 | +# enable_creation_date: true # disable for offline docs |
| 81 | +# type: datetime # disable for offline docs |
| 82 | + |
| 83 | +nav: |
| 84 | + - User Guide: |
| 85 | + - index.md |
| 86 | + - Installation: userguide/install.md |
| 87 | + - Getting Started: userguide/getting-started.md |
| 88 | + - Annotations: userguide/annotations.md |
| 89 | + - Expectations: userguide/expectations.md |
| 90 | + - Advanced data comparison: userguide/advanced_data_comparison.md |
| 91 | + - Running unit tests: userguide/running-unit-tests.md |
| 92 | + - Querying for test suites: userguide/querying_suites.md |
| 93 | + - Testing best practices: userguide/best-practices.md |
| 94 | + - Upgrade utPLSQL: userguide/upgrade.md |
| 95 | + - Reporting: |
| 96 | + - Using reporters: userguide/reporters.md |
| 97 | + - Code coverage: userguide/coverage.md |
| 98 | + - Error handling and reporting: userguide/exception-reporting.md |
| 99 | + - About: |
| 100 | + - Project Details: about/project-details.md |
| 101 | + - License: about/license.md |
| 102 | + - Support: about/support.md |
| 103 | + - Authors: about/authors.md |
0 commit comments