create_from_template
Generate new notes in Obsidian using predefined templates to maintain consistent formatting and structure across your vault.
Instructions
Create a new note from a template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_note_path | Yes | ||
template_path | Yes | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"new_note_path": {
"title": "New Note Path",
"type": "string"
},
"template_path": {
"title": "Template Path",
"type": "string"
},
"title": {
"default": "",
"title": "Title",
"type": "string"
}
},
"required": [
"template_path",
"new_note_path"
],
"type": "object"
}