get_section
Retrieve a specific section from a Markdown file by its ID, with configurable validation levels for accuracy and compatibility. Simplifies targeted content extraction.
Instructions
Get a specific section by ID.
Args:
document_path: Path to the Markdown file
section_id: The section ID to retrieve
validation_level: Validation strictness - "STRICT", "NORMAL", or "PERMISSIVE"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_path | Yes | ||
section_id | Yes | ||
validation_level | No | NORMAL |
Input Schema (JSON Schema)
{
"properties": {
"document_path": {
"title": "Document Path",
"type": "string"
},
"section_id": {
"title": "Section Id",
"type": "string"
},
"validation_level": {
"default": "NORMAL",
"title": "Validation Level",
"type": "string"
}
},
"required": [
"document_path",
"section_id"
],
"title": "get_sectionArguments",
"type": "object"
}