Reviewed-on: #2 Co-authored-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com> Co-committed-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
51 lines
1002 B
YAML
51 lines
1002 B
YAML
theme:
|
|
name: material
|
|
palette:
|
|
- scheme: slate
|
|
primary: deep purple
|
|
accent: cyan
|
|
font:
|
|
text: Inter
|
|
code: JetBrains Mono
|
|
features:
|
|
- navigation.tabs
|
|
- navigation.expand
|
|
- navigation.top
|
|
- navigation.instant
|
|
- content.code.copy
|
|
- content.code.annotate
|
|
plugins:
|
|
- search
|
|
- mkdocstrings:
|
|
handlers:
|
|
python:
|
|
paths:
|
|
- .
|
|
options:
|
|
docstring_style: google
|
|
show_source: false
|
|
show_signature_annotations: true
|
|
separate_signature: true
|
|
merge_init_into_class: true
|
|
inherited_members: true
|
|
annotations_path: brief
|
|
show_root_heading: true
|
|
group_by_category: true
|
|
site_name: omniread
|
|
nav:
|
|
- Home: index.md
|
|
- Core API:
|
|
- core/index.md
|
|
- core/content.md
|
|
- core/parser.md
|
|
- core/scraper.md
|
|
- HTML Handling:
|
|
- html/index.md
|
|
- html/parser.md
|
|
- html/scraper.md
|
|
- PDF Handling:
|
|
- pdf/index.md
|
|
- pdf/client.md
|
|
- pdf/parser.md
|
|
- pdf/scraper.md
|