delete_paragraph
Remove a specific paragraph from a Microsoft Word document by specifying the filename and paragraph index. Streamline document editing and content management with this targeted tool.
Instructions
Delete a paragraph from a document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
paragraph_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"paragraph_index": {
"title": "Paragraph Index",
"type": "integer"
}
},
"required": [
"filename",
"paragraph_index"
],
"type": "object"
}