mkdocs.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. site_name: libigl
  2. theme:
  3. name: material
  4. logo:
  5. icon: 'details'
  6. palette:
  7. primary: 'light blue'
  8. accent: 'blue'
  9. markdown_extensions:
  10. - codehilite
  11. - footnotes
  12. - markdown.extensions.toc:
  13. permalink: true
  14. - pymdownx.arithmatex
  15. - pymdownx.betterem:
  16. smart_enable: all
  17. - pymdownx.caret
  18. - pymdownx.critic
  19. - pymdownx.details
  20. - pymdownx.inlinehilite
  21. - pymdownx.magiclink
  22. - pymdownx.mark
  23. - pymdownx.smartsymbols
  24. - pymdownx.superfences
  25. - pymdownx.tasklist:
  26. custom_checkbox: true
  27. - pymdownx.tilde
  28. extra_javascript:
  29. - 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
  30. pages:
  31. - Home: index.md
  32. - Tutorial:
  33. - "Chapter 1: Introduction to libigl": tutorial/chapter-1.md
  34. - "Chapter 2: Discrete Geometric Quantities and Operators": tutorial/chapter-2.md
  35. - "Chapter 3: Matrices and Linear Algebra": tutorial/chapter-3.md
  36. - "Chapter 4: Shape Deformation": tutorial/chapter-4.md
  37. - "Chapter 5: Parametrization": tutorial/chapter-5.md
  38. - "Chapter 6: External libraries": tutorial/chapter-6.md
  39. - "Chapter 7: Miscellaneous": tutorial/chapter-7.md
  40. - "Chapter 8: Outlook for continuing development": tutorial/chapter-8.md
  41. - Contributing:
  42. - Style Guidelines: style-guidelines.md
  43. - Bug Report: CONTRIBUTING.md
  44. - Creating a Pull Request: before-submitting-pull-request.md
  45. - Misc:
  46. - Coding Tips: coding-guidelines.md
  47. - FAQ: faq.md
  48. - About:
  49. - Release History: RELEASE_HISTORY.md
  50. - License: LICENSE.md