/ mkdocs.yaml
mkdocs.yaml
 1  site_name: "fast-seqfunc"
 2  site_url: https://ericmjl.github.io/fast-seqfunc
 3  
 4  docs_dir: docs/
 5  
 6  # For more configuration on the theme, see https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/
 7  theme:
 8    name: material
 9    icon:
10      logo: "fontawesome/solid/book"
11    features:
12      - instant
13      - tabs
14    language: en
15  
16  # We customize the navigation by hand to control the order
17  # in which pages show up.
18  
19  plugins:
20    - search
21    - mknotebooks:
22        execute: true
23        write_markdown: true
24        allow_errors: false
25        timeout: 1200
26        binder: true
27        binder_service_name: "gh"
28        binder_branch: "master"
29        binder_ui: "lab"
30  
31  # Taken from here: https://squidfunk.github.io/mkdocs-material/extensions/codehilite/
32  markdown_extensions:
33    - codehilite
34    - admonition
35    - pymdownx.superfences
36    - markdown.extensions.attr_list
37  
38  extra_css:
39    - apidocs.css
40  
41  extra_javascript:
42    - config.js
43  
44  repo_name: "ericmjl/fast-seqfunc"
45  repo_url: "https://github.com/ericmjl/fast-seqfunc"
46  
47  extra:
48    social:
49      - icon: "fontawesome/brands/github"
50        link: "https://github.com/ericmjl"