mkdocs.yml 2.4 KB

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