add_heading
Insert headings into a Word document by specifying the filename, text, and level. Simplify document structuring for improved organization and readability.
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"
}