github.com/thanos-io/thanos@v0.32.5/.mdox.yaml (about) 1 version: 1 2 3 inputDir: "$(INPUT_DIR)" 4 outputDir: "$(OUTPUT_DIR)" 5 extraInputGlobs: 6 - "CHANGELOG.md" 7 - "SECURITY.md" 8 - "MAINTAINERS.md" 9 - "CONTRIBUTING.md" 10 - "CODE_OF_CONDUCT.md" 11 12 gitIgnored: true 13 localLinksStyle: 14 hugo: 15 indexFileName: "_index.md" 16 17 linkPrefixForNonMarkdownResources: "https://github.com/thanos-io/thanos/blob/main" 18 19 transformations: 20 21 - glob: "$(EXTERNAL_GLOB_REL)CHANGELOG.md" 22 path: /thanos/CHANGELOG.md 23 frontMatter: 24 template: | 25 title: Changelog 26 type: docs 27 menu: thanos 28 lastmod: "{{ .Origin.LastMod }}" 29 backMatter: &docBackMatter 30 template: | 31 Found a typo, inconsistency or missing information in our docs? 32 Help us to improve [Thanos](https://thanos.io) documentation by proposing a fix [on GitHub here](https://github.com/thanos-io/thanos/edit/main/{{ .Origin.Path }}) :heart: 33 34 - glob: "$(EXTERNAL_GLOB_REL)MAINTAINERS.md" 35 path: /thanos/MAINTAINERS.md 36 frontMatter: 37 template: | 38 title: Maintainers 39 type: docs 40 menu: thanos 41 lastmod: "{{ .Origin.LastMod }}" 42 backMatter: *docBackMatter 43 44 - glob: "$(EXTERNAL_GLOB_REL)SECURITY.md" 45 path: /thanos/SECURITY.md 46 frontMatter: 47 template: | 48 title: Security 49 type: docs 50 menu: thanos 51 lastmod: "{{ .Origin.LastMod }}" 52 backMatter: *docBackMatter 53 54 - glob: "$(EXTERNAL_GLOB_REL)CODE_OF_CONDUCT.md" 55 path: /contributing/CODE_OF_CONDUCT.md 56 frontMatter: 57 template: | 58 title: Code of Conduct 59 type: docs 60 menu: contributing 61 lastmod: "{{ .Origin.LastMod }}" 62 backMatter: *docBackMatter 63 64 - glob: "$(EXTERNAL_GLOB_REL)CONTRIBUTING.md" 65 path: /contributing/CONTRIBUTING.md 66 frontMatter: 67 template: | 68 title: Contributing 69 type: docs 70 menu: contributing 71 lastmod: "{{ .Origin.LastMod }}" 72 backMatter: *docBackMatter 73 74 # Non-versioned element: Blog. 75 - glob: "blog/*" 76 path: /../blog/* 77 78 - glob: "**/README.md" 79 path: _index.md 80 frontMatter: &justTitleFrontMatter 81 template: | 82 title: "{{ .Origin.FirstHeader }}" 83 backMatter: *docBackMatter 84 85 - glob: "getting-started.md" 86 path: /thanos/getting-started.md 87 popHeader: false 88 frontMatter: &weightOneFrontMatter 89 template: | 90 type: docs 91 title: "{{ .Origin.FirstHeader }}" 92 menu: thanos 93 weight: 1 94 lastmod: "{{ .Origin.LastMod }}" 95 backMatter: *docBackMatter 96 97 - glob: "quick-tutorial.md" 98 path: /thanos/quick-tutorial.md 99 popHeader: false 100 frontMatter: *weightOneFrontMatter 101 backMatter: *docBackMatter 102 103 - glob: "proposals-*/README.md" 104 path: /proposals-*/_index.md 105 frontMatter: *justTitleFrontMatter 106 backMatter: *docBackMatter 107 108 - glob: "README.md" 109 path: /thanos/_index.md 110 frontMatter: *justTitleFrontMatter 111 backMatter: *docBackMatter 112 113 - glob: "*.md" 114 path: /thanos/* 115 popHeader: false 116 frontMatter: 117 template: | 118 type: docs 119 title: "{{ .Origin.FirstHeader }}" 120 menu: thanos 121 lastmod: "{{ .Origin.LastMod }}" 122 backMatter: *docBackMatter 123 124 - glob: "operating/*.md" 125 path: /operating/* 126 frontMatter: 127 template: | 128 type: docs 129 title: "{{ .Origin.FirstHeader }}" 130 menu: operating 131 lastmod: "{{ .Origin.LastMod }}" 132 backMatter: *docBackMatter 133 134 - glob: "contributing/*.md" 135 path: /contributing/* 136 frontMatter: 137 template: | 138 type: docs 139 title: "{{ .Origin.FirstHeader }}" 140 menu: contributing 141 lastmod: "{{ .Origin.LastMod }}" 142 backMatter: *docBackMatter 143 144 - glob: "components/*.md" 145 path: /components/* 146 frontMatter: 147 template: | 148 type: docs 149 title: "{{ .Origin.FirstHeader }}" 150 menu: components 151 lastmod: "{{ .Origin.LastMod }}" 152 backMatter: *docBackMatter