...
| Code Block | ||||
|---|---|---|---|---|
| ||||
var model = editor.getBodyModelJSONForAI();
var model = editor.getBodyModelJSONForAI(false. true);
var model = editor.getBodyModelJSONForAI(true); |
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
{
"type": "Body",
"children": [
{
"children": [
{
"text": "안녕",
"type": "TextRun"
},
{
"text": "하세요",
"type": "TextRun"
}
],
"type": "Paragraph"
}
]
} |
...