setup_structure
Generate Diataxis-compliant documentation structure tailored for popular static site generators like Jekyll, Hugo, Docusaurus, MkDocs, and Eleventy. Define the root path and include examples for streamlined setup.
Instructions
Create Diataxis-compliant documentation structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeExamples | No | ||
path | Yes | Root path for documentation | |
ssg | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeExamples": {
"default": true,
"type": "boolean"
},
"path": {
"description": "Root path for documentation",
"type": "string"
},
"ssg": {
"enum": [
"jekyll",
"hugo",
"docusaurus",
"mkdocs",
"eleventy"
],
"type": "string"
}
},
"required": [
"path",
"ssg"
],
"type": "object"
}