logseq_edit_block
Enable editing mode for a specific block in Logseq by providing the block UUID or reference and cursor position, allowing precise content updates.
Instructions
Enter editing mode for a specific block
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pos | No | Cursor position in block content | |
src_block | Yes | Block UUID or reference |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"pos": {
"default": 0,
"description": "Cursor position in block content",
"maximum": 10000,
"minimum": 0,
"title": "Pos",
"type": "integer"
},
"src_block": {
"description": "Block UUID or reference",
"examples": [
"6485a-9de3...",
"[[Page/Block]]"
],
"title": "Src Block",
"type": "string"
}
},
"required": [
"src_block"
],
"title": "EditBlockParams",
"type": "object"
}