mkdocs.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. site_name: Math
  2. site_url: https://phpoffice.github.io/Math
  3. repo_url: https://github.com/PHPOffice/Math
  4. repo_name: PHPOffice/Math
  5. edit_uri: edit/master/docs/
  6. ## Theme
  7. theme:
  8. name: material
  9. palette:
  10. primary: grey
  11. features:
  12. - search.highlight
  13. - search.suggest
  14. ## Plugins
  15. plugins:
  16. - search
  17. ## Config
  18. extra:
  19. generator: false
  20. extra_javascript:
  21. - assets/mathjax.js
  22. - https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?version=3.111.0&features=es6
  23. - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
  24. markdown_extensions:
  25. ## Syntax highlighting
  26. - pymdownx.highlight
  27. - pymdownx.superfences
  28. ## Support for Math
  29. - pymdownx.arithmatex:
  30. generic: true
  31. ## Support for emojis
  32. - pymdownx.emoji:
  33. emoji_index: !!python/name:materialx.emoji.twemoji
  34. emoji_generator: !!python/name:materialx.emoji.to_svg
  35. ## Support for call-outs
  36. - admonition
  37. - pymdownx.details
  38. use_directory_urls: false
  39. ## Navigation
  40. nav:
  41. - Introduction: 'index.md'
  42. - Install: 'install.md'
  43. - Usage:
  44. - Elements:
  45. - Fraction: 'usage/elements/fraction.md'
  46. - Identifier: 'usage/elements/identifier.md'
  47. - Numeric: 'usage/elements/numeric.md'
  48. - Operator: 'usage/elements/operator.md'
  49. - Row: 'usage/elements/row.md'
  50. - Semantics: 'usage/elements/semantics.md'
  51. - Superscript: 'usage/elements/superscript.md'
  52. - Readers: 'usage/readers.md'
  53. - Writers: 'usage/writers.md'
  54. - Credits: 'credits.md'
  55. - Releases:
  56. - '0.3.0 (WIP)': 'changes/0.3.0.md'
  57. - '0.2.0': 'changes/0.2.0.md'
  58. - '0.1.0': 'changes/0.1.0.md'
  59. - Developers:
  60. - 'Coveralls': 'https://coveralls.io/github/PHPOffice/Math'
  61. - 'Code Coverage': 'coverage/index.html'
  62. - 'PHPDoc': 'docs/index.html'