Skip to content

Commit

Permalink
Merge pull request #12 from cloudblue/LITE-26451-mkdocstring
Browse files Browse the repository at this point in the history
LITE-26451: switched to mkdocstrings
  • Loading branch information
ffaraone authored Jan 30, 2023
2 parents e09fcd9 + 0507f2d commit ddcc006
Show file tree
Hide file tree
Showing 5 changed files with 215 additions and 91 deletions.
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

0 comments on commit ddcc006

Please sign in to comment.