docfx.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "metadata": [
  3. {
  4. "src": [
  5. {
  6. "src": "../Terminal.Gui",
  7. "files": [
  8. "**/*.csproj"
  9. ]
  10. }
  11. ],
  12. "dest": "api",
  13. "memberLayout": "separatePages"
  14. },
  15. {
  16. "src": [
  17. {
  18. "src": "../UICatalog",
  19. "files": [
  20. "**/*.csproj"
  21. ]
  22. }
  23. ],
  24. "dest": "api/UICatalog",
  25. "memberLayout": "separatePages"
  26. }
  27. ],
  28. "build": {
  29. "template": [
  30. "default",
  31. "templates/modern"
  32. // ,
  33. // "templates/singulinkfx"
  34. ],
  35. "theme": "light",
  36. "output": "_site",
  37. "content": [
  38. {
  39. "files": [
  40. "**/*.{md,yml}"
  41. ],
  42. "exclude": [
  43. "_site/**"
  44. ]
  45. }
  46. ],
  47. "resource": [
  48. {
  49. "files": [
  50. "images/**"
  51. ]
  52. }
  53. ],
  54. "globalMetadata": {
  55. "_appName": "Terminal.Gui v1",
  56. "_appTitle": "Terminal.Gui v1",
  57. "pdf": false,
  58. "_appFaviconPath": "images/icon48.png",
  59. "_appLogoPath": "images/logo48.png",
  60. "_appFooter": "Terminal.Gui - Part of the gui-cs Organization",
  61. "_enableSearch": true,
  62. "_disableSideFilter": false,
  63. "_enableNewTab": true,
  64. "_disableContribution": false,
  65. "_disableBreadcrumb": false,
  66. "_gitContribute": {
  67. "repo": "https://github.com/gui-cs/Terminal.Gui",
  68. "branch": "develop",
  69. "apiSpecFolder": "docfx/overrides"
  70. },
  71. "_gitUrlPattern": "github"
  72. },
  73. "markdownEngineName": "markdig",
  74. "globalMetadataFiles": [],
  75. "fileMetadataFiles": [],
  76. "postProcessors": [
  77. "ExtractSearchIndex"
  78. ],
  79. "noLangKeyword": false,
  80. "keepFileLink": false
  81. }
  82. }