create_documentation_section
Add a new navigation section in markdown documentation by specifying a path and title; includes an index.md file for structured content organization.
Instructions
Create a new navigation section with an index.md file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order | No | ||
path | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"order": {
"type": "number"
},
"path": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"path",
"title"
],
"type": "object"
}