mkdocs.yml 2.6 KB

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