mkdocs.yml (516B)
1 site_name: Andrew's Docs 2 repo_url: https://git.laack.co/notes/log.html 3 nav: 4 - Home: 'index.md' 5 - Math: 'Math.md' 6 - ML: 'MachineLearning.md' 7 - CS: 'ComputerScience.md' 8 9 markdown_extensions: 10 - pymdownx.arithmatex: 11 generic: true 12 13 extra_javascript: 14 - https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js 15 16 theme: 17 name: null 18 custom_dir: 'custom_theme/' 19 favicon: favicon.ico 20 21 plugins: 22 - search: 23 indexing: 'full' 24 - mermaid2: 25 26 extra_css: 27 - stylesheets/custom.css 28 29 extra: 30 generator: false 31