forked from aritraroy24/ComProScanner
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
179 lines (170 loc) · 5.21 KB
/
mkdocs.yml
File metadata and controls
179 lines (170 loc) · 5.21 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
site_name: ComProScanner Documentation
site_description: A comprehensive Python package for extracting composition-property data from scientific articles for building databases
site_author: Aritra Roy
site_url: https://slimeslab.github.io/ComProScanner/
repo_name: slimeslab/ComProScanner
repo_url: https://github.com/slimeslab/ComProScanner
edit_uri: edit/main/docs/
copyright: Copyright © 2025 SLIMES Lab - Licensed under <a href="about/license/" style="color:#009485" onMouseOver="this.style.color='#ff9100'" onMouseOut="this.style.color='#009485'">MIT</a>
theme:
name: material
custom_dir: docs/overrides
logo: assets/comproscanner_logo_small.png
favicon: assets/comproscanner_logo_small.ico
palette:
# Palette toggle for light mode
- scheme: default
primary: teal
accent: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: teal
accent: orange
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.top
- navigation.footer
- navigation.indexes
- toc.follow
- toc.integrate
- search.suggest
- search.highlight
- search.share
- header.autohide
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.tooltips
plugins:
- search:
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
- minify:
minify_html: true
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src] # Points to the source code
options:
show_symbol_type_toc: true
allow_inspection: true
docstring_style: google
heading_level: 2
show_root_heading: true
show_root_full_path: false
show_signature_annotations: true
separate_signature: true
members_order: source
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
title: On this page
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/slimeslab
name: GitHub Profile
- icon: fontawesome/solid/globe
link: https://slimeslab.github.io
name: Personal Website
version:
provider: mike
analytics:
provider: google
property:
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve by
<a href="https://github.com/slimeslab/ComProScanner/issues/new" target="_blank" rel="noopener">opening an issue</a>.
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- User Guide:
- Metadata Collection: usage/metadata-collection.md
- Article Processing: usage/article-processing.md
- Data Extraction: usage/data-extraction.md
- Data Cleaning: usage/data-cleaning.md
- Evaluation:
- Overview: usage/evaluation/overview.md
- Semantic Evaluation: usage/evaluation/semantic.md
- Agentic Evaluation: usage/evaluation/agentic.md
- Visualization:
- Overview: usage/visualization/overview.md
- Data Visualization: usage/visualization/data-viz.md
- Evaluation Visualization: usage/visualization/eval-viz.md
- RAG Configuration: rag-config.md
- API Overview: api.md
- About:
- Project Structure: about/project-structure.md
- License: about/license.md
- Changelog: about/changelog.md
- Contribution: about/contribution.md
- Citation: about/citation.md
- Contact: about/contact.md