add_heading
Add structured headings to Microsoft Word documents, specifying text and level for improved organization and readability. Helps manage content hierarchy efficiently.
Instructions
Add a heading to a Word document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
level | No | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"level": {
"default": 1,
"title": "Level",
"type": "integer"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"filename",
"text"
],
"type": "object"
}