Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LITE-26451: switched to mkdocstrings #12

Merged
merged 1 commit into from
Jan 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/reference.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
API Reference
=============

# Constants

::: py_rql.constants.FilterLookups

# Exceptions

::: py_rql.exceptions.RQLFilterError

::: py_rql.exceptions.RQLFilterParsingError

::: py_rql.exceptions.RQLFilterLookupError

::: py_rql.exceptions.RQLFilterValueError
21 changes: 20 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ edit_uri: ""
copyright: Copyright © 2023 Ingram Micro. All Rights Reserved.
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/cloudblue
- icon: material/home
link: https://connect.cloudblue.com/community/
extra_css:
- css/custom.css
theme:
Expand All @@ -25,7 +30,7 @@ theme:
icon: "material/lightbulb-outline"
name: "Switch to light mode"
markdown_extensions:
- mkautodoc
- admonition
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.tabbed:
Expand All @@ -40,6 +45,20 @@ plugins:
- glightbox
- search:
lang: en
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_root_heading: true
show_signature_annotations: true
merge_init_into_class: true
show_source: false
- autorefs
watch:
- docs
- py_rql
nav:
- Home: index.md
- Guide: guide.md
- API Reference: reference.md
Loading