generate_documentation_navigation
Create a JSON-based navigation structure from markdown documents in a specified directory for use in navigation menus. Supports path and recursive options for flexible document organization.
Instructions
Generate a navigation structure from the markdown documents in the docs directory. Returns a JSON structure that can be used for navigation menus.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
basePath | No | ||
path | No | ||
recursive | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"basePath": {
"type": "string"
},
"path": {
"type": "string"
},
"recursive": {
"default": false,
"type": "boolean"
}
},
"type": "object"
}