-
Notifications
You must be signed in to change notification settings - Fork 121
/
mkdocs.yml
executable file
·43 lines (36 loc) · 1.46 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
site_name: BioPandas
site_url: http://rasbt.github.io/biopandas
site_author: Sebastian Raschka
site_description: Biopandas is a python package for working with molecular structures in pandas DataFrames.
repo_url: https://github.com/rasbt/biopandas
#include_search: true
#theme: yeti
docs_dir: docs
site_favicon: favicon.ico
theme: yeti
markdown_extensions:
- tables
- fenced_code
- mdx_math:
enable_dollar_delimiter: True #for use of inline $..$
extra_javascript:
- https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML
- mathjaxhelper.js
extra_css:
- extra.css
copyright: Copyright © 2015-2022 <a href="http://sebastianraschka.com">Sebastian Raschka</a>
google_analytics: ['UA-38457794-3', 'rasbt.github.io/biopandas']
nav:
- Tutorials:
- Working with PDB Structures in DataFrames: tutorials/Working_with_PDB_Structures_in_DataFrames.md
- Working with mmCIF Structures in DataFrames: tutorials/Working_with_mmCIF_Structures_in_DataFrames.md
- Working with MOL2 Structures in DataFrames: tutorials/Working_with_MOL2_Structures_in_DataFrames.md
- API:
- biopandas.pdb: api_subpackages/biopandas.pdb.md
- biopandas.mmcif: api_subpackages/biopandas.mmcif.md
- biopandas.mol2: api_subpackages/biopandas.mol2.md
- Changelog: CHANGELOG.md
- Install: installation.md
- Discuss: https://github.com/rasbt/biopandas/discussions
- Contribute: CONTRIBUTING.md
- Cite: citing.md