forked from jamesturk/scrapeghost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
74 lines (72 loc) · 1.64 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
site_name: scrapeghost
site_url: https://jamesturk.github.io/scrapeghost/
site_author: James Turk
site_description: An experimental library for automated web scraping with GPT.
copyright: Copyright © 2023 James Turk
repo_url: https://github.com/jamesturk/scrapeghost/
repo_name: jamesturk/scrapeghost
edit_uri: edit/main/docs/
theme:
logo: assets/scrapeghost.png
favicon: assets/scrapeghost.png
name: material
palette:
- scheme: slate
primary: purple
accent: purple
toggle:
icon: material/toggle-switch
name: Switch to light mode
- scheme: default
primary: purple
accent: purple
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
features:
#- navigation.tabs
- navigation.sections
- navigation.top
- content.tabs.link
icon:
repo: fontawesome/brands/github
markdown_extensions:
- admonition
- def_list
- pymdownx.highlight
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets
- pymdownx.superfences
#- mkdocs-click
- toc:
permalink: true
plugins:
- search
# - mkdocstrings:
# handlers:
# python:
# options:
# docstring_style: sphinx
# show_source: false
# show_root_full_path: false
# show_root_toc_entry: false
# watch:
# - src/spatula
extra_css:
- assets/extra.css
nav:
- 'index.md'
- 'tutorial.md'
- 'openai.md'
- 'usage.md'
- 'faq.md'
- Reference:
- 'cli.md'
- 'api.md'
- About Scrapeghost:
#- 'philosophy.md'
#- 'contributing.md'
- 'LICENSE.md'
- 'code_of_conduct.md'
- 'changelog.md'