insert_paragraph
Adds a new paragraph to an open HWPX document with specified text, section index, and character properties.
Instructions
현재 열린 문서에 새 문단을 추가합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
char_pr_id | No | ||
section_index | No | ||
text | Yes | 문단 텍스트 |
Input Schema (JSON Schema)
{
"properties": {
"char_pr_id": {
"type": "string"
},
"section_index": {
"minimum": 0,
"type": "integer"
},
"text": {
"description": "문단 텍스트",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}