mkdocs.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. site_name: libigl
  2. strict: true
  3. theme:
  4. name: material
  5. logo:
  6. icon: 'details'
  7. palette:
  8. primary: 'light blue'
  9. accent: 'blue'
  10. markdown_extensions:
  11. - codehilite
  12. - footnotes
  13. - admonition
  14. - toc:
  15. permalink: true
  16. - markdown.extensions.toc:
  17. permalink: true
  18. - pymdownx.arithmatex
  19. - pymdownx.betterem:
  20. smart_enable: all
  21. - pymdownx.caret
  22. - pymdownx.critic
  23. - pymdownx.details
  24. - pymdownx.inlinehilite
  25. - pymdownx.magiclink
  26. - pymdownx.mark
  27. - pymdownx.smartsymbols
  28. - pymdownx.superfences
  29. - pymdownx.tasklist:
  30. custom_checkbox: true
  31. - pymdownx.tilde
  32. extra_javascript:
  33. - 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
  34. extra_css:
  35. - ' '
  36. pages:
  37. - Home: index.md
  38. - Tutorial:
  39. - "Chapter 1: Introduction to libigl": tutorial/chapter-1.md
  40. - "Chapter 2: Discrete Geometric Quantities and Operators": tutorial/chapter-2.md
  41. - "Chapter 3: Matrices and Linear Algebra": tutorial/chapter-3.md
  42. - "Chapter 4: Shape Deformation": tutorial/chapter-4.md
  43. - "Chapter 5: Parametrization": tutorial/chapter-5.md
  44. - "Chapter 6: External libraries": tutorial/chapter-6.md
  45. - "Chapter 7: Miscellaneous": tutorial/chapter-7.md
  46. - "Chapter 8: Outlook for continuing development": tutorial/chapter-8.md
  47. - Compilation:
  48. - Example Project: example-project.md
  49. - Static Library: static-library.md
  50. - External Dependencies: third-party.md
  51. - Contributing:
  52. - Style Guidelines: style-guidelines.md
  53. - Bug Report: CONTRIBUTING.md
  54. - Creating a Pull Request: before-submitting-pull-request.md
  55. - Unit Tests: unit-tests.md
  56. - Misc:
  57. - Matlab-libigl Cheatsheet: matlab-to-eigen.md
  58. - Coding Tips: coding-guidelines.md
  59. - File Formats:
  60. - Index: file-formats/index.md
  61. - bf: file-formats/bf.md
  62. - dmat: file-formats/dmat.md
  63. - rbr: file-formats/rbr.md
  64. - tgf: file-formats/tgf.md
  65. - xml: file-formats/xml.md
  66. - FAQ: faq.md
  67. - About:
  68. - Release History: RELEASE_HISTORY.md
  69. - License: LICENSE.md