list_sections
Extract and list all sections from a Markdown file. Define document path and validation strictness (STRICT, NORMAL, PERMISSIVE) to ensure accurate section identification and organization.
Instructions
List all sections in the document.
Args:
document_path: Path to the Markdown file
validation_level: Validation strictness - "STRICT", "NORMAL", or "PERMISSIVE"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_path | Yes | ||
validation_level | No | NORMAL |
Input Schema (JSON Schema)
{
"properties": {
"document_path": {
"title": "Document Path",
"type": "string"
},
"validation_level": {
"default": "NORMAL",
"title": "Validation Level",
"type": "string"
}
},
"required": [
"document_path"
],
"title": "list_sectionsArguments",
"type": "object"
}