-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
44 lines (38 loc) · 905 Bytes
/
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
# SPDX-FileCopyrightText: Red Hat
# SPDX-License-Identifier: MIT
site_name: pytest-client-tools
site_description: pytest plugin to test RHSM client tools
site_author: Pino Toscano
theme:
name: material
highlightjs: true
hljs_languages:
- python
- toml
repo_url: https://github.com/ptoscano/pytest-client-tools
nav:
- Home: index.md
- Configuration: config.md
- "API Reference":
- Classes: api.md
- Fixtures: fixtures.md
markdown_extensions:
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: sphinx
heading_level: 3
show_source: false