add_paragraph
Insert paragraphs into Word documents by specifying file path, text content, and optional style and alignment settings to enhance document formatting and structure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
alignment | No | ||
filePath | Yes | ||
style | No | ||
text | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"alignment": {
"enum": [
"left",
"center",
"right",
"start",
"end",
"both",
"mediumKashida",
"distribute",
"numTab",
"highKashida",
"lowKashida",
"thaiDistribute"
],
"type": "string"
},
"filePath": {
"type": "string"
},
"style": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"filePath",
"text"
],
"type": "object"
}