append_to_note
Add new content to existing notes in your Obsidian vault, enabling continuous updates and expansion of your knowledge base without creating duplicate files.
Instructions
Append content to an existing note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}