Skip to content

Commit

Permalink
create mkdocs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Taniya-Das committed Nov 5, 2024
1 parent 20b60c7 commit c7b913a
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
site_name: OpenML Tensorflow Extension
theme:
name: material
features:
- content.code.copy
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode

# Dark mode
- media: "(prefers-color-scheme: dark)"
primary: indigo
accent: indigo
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode

markdown_extensions:
- admonition
- codehilite
- attr_list
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- toc:
permalink: true
plugins:
- search
- mkdocs-jupyter
- awesome-pages
# - mknotebooks:
# execute: false
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [openml_tensorflow]
load_external_modules: true
show_source: true
options:
docstring_section_style: table
show_docstring_functions: true

nav:
- Home: "index.md"
- API Reference:
- Examples:
- "Limitations of the API": "Limitations of the API.md"

0 comments on commit c7b913a

Please sign in to comment.