delete_footnote_from_document
Remove footnotes from a Word document by specifying the footnote ID or searching for nearby text. Automate footnote deletion for cleaner document formatting.
Instructions
Delete a footnote from a Word document. Identify the footnote either by ID (1, 2, 3, etc.) or by searching for text near it.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
footnote_id | No | ||
output_filename | No | ||
search_text | No |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"footnote_id": {
"default": null,
"title": "Footnote Id",
"type": "integer"
},
"output_filename": {
"default": null,
"title": "Output Filename",
"type": "string"
},
"search_text": {
"default": null,
"title": "Search Text",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}