-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
69 lines (65 loc) · 1.71 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
site_name: 'BechdelAI'
site_description: 'Automating the Bechdel test and its variants for feminine representation in movies with AI'
site_author: 'Data For Good'
site_url: "https://github.com/dataforgoodfr/bechdelai"
edit_uri: ""
theme:
logo: assets/logo2.png
# logo: assets/logo.png
# favicon: assets/favicon.png
name: 'material'
font:
text: Inter
icon:
repo: fontawesome/brands/github
features:
- navigation.tabs
- navigation.instant
- navigation.sections
markdown_extensions:
- admonition
- codehilite
- pymdownx.details
- pymdownx.superfences
- pymdownx.arithmatex
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
repo_name: 'bechdelai'
repo_url: 'https://github.com/dataforgoodfr/bechdelai'
extra_css:
- ./stylesheets/extra.css
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML
nav:
- Home:
- Welcome: index.md
- Installation: home/installation.md
- Quickstart: home/quickstart.md
- Common questions: home/common-questions.md
- Changelog: home/releases.md
- Tutorials:
- Quickstart: tutorials/quickstart.md
- Library:
- Home: library/index.md
- Data:
- bechdeltest.com: library/data/bechdeltestcom.md
- TMDB: library/data/tmdb.md
- Image:
- Img: library/image/img.md
- Face Detection: library/image/face_detection.md
plugins:
- search
# - mknotebooks:
# execute: false
# enable_default_jupyter_cell_styling: false
# enable_default_pandas_dataframe_styling: true
- mkdocstrings:
handlers:
python:
options:
show_source: true
watch:
- "bechdelai"