create_from_template
Generate new notes in Obsidian using predefined templates with custom variables and frontmatter for consistent document creation.
Instructions
Create a new note from a template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
frontmatter | No | Additional frontmatter | |
targetPath | Yes | Path for new note | |
templatePath | Yes | Path to template file | |
variables | No | Template variables | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"frontmatter": {
"description": "Additional frontmatter",
"type": "object"
},
"targetPath": {
"description": "Path for new note",
"type": "string"
},
"templatePath": {
"description": "Path to template file",
"type": "string"
},
"variables": {
"description": "Template variables",
"type": "object"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault",
"templatePath",
"targetPath"
],
"type": "object"
}