Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
AllenDowney
GitHub Repository: AllenDowney/bayesian-analysis-recipes
Path: blob/master/mkdocs.yml
409 views
1
site_name: Bayesian Analysis Recipes
2
3
theme:
4
name: 'material'
5
palette:
6
primary: 'green'
7
accent: 'green'
8
logo:
9
icon: 'library_books'
10
11
plugins:
12
- search
13
- mknotebooks:
14
execute: false
15
write_markdown: true
16
timeout: 600
17
18
# Taken from here: https://squidfunk.github.io/mkdocs-material/extensions/codehilite/
19
markdown_extensions:
20
- codehilite
21
- pymdownx.arithmatex
22
- pymdownx.details
23
- pymdownx.superfences
24
- markdown.extensions.attr_list
25
26
extra_javascript:
27
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
28
29
repo_name: 'ericmjl/bayesian-analysis-recipes'
30
repo_url: 'https://github.com/ericmjl/bayesian-analysis-recipes'
31
32
extra:
33
social:
34
- type: 'envelope'
35
link: 'http://www.shortwhale.com/ericmjl'
36
- type: 'github'
37
link: 'https://github.com/ericmjl'
38
- type: 'twitter'
39
link: 'https://twitter.com/ericmjl'
40
- type: 'linkedin'
41
link: 'https://linkedin.com/in/ericmjl'
42
43