This commit is contained in:
Liang Ding 2022-07-29 23:50:22 +08:00
parent 236ffd8e64
commit 35acea7332
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
2 changed files with 47 additions and 3 deletions

View file

@ -703,7 +703,7 @@
}
```
* `id`:待获取块的 ID
* `id`:待获取块的 ID
* 返回值
```json
@ -803,7 +803,29 @@
### 渲染模板
/api/template/render
* `/api/template/render`
* 参数
```json
{
"id": "20220724223548-j6g0o87",
"path": "F:\\SiYuan\\data\\templates\\foo.md"
}
```
* `id`:调用渲染所在的文档 ID
* `path`:模板文件绝对路径
* 返回值
```json
{
"code": 0,
"msg": "",
"data": {
"content": "<div data-node-id=\"20220729234848-dlgsah7\" data-node-index=\"1\" data-type=\"NodeParagraph\" class=\"p\" updated=\"20220729234840\"><div contenteditable=\"true\" spellcheck=\"false\">foo</div><div class=\"protyle-attr\" contenteditable=\"false\"></div></div>",
"path": "F:\\SiYuan\\data\\templates\\foo.md"
}
}
```
## 文件