render_template
Generate Obsidian notes by applying variables to template files, creating structured content with custom frontmatter and predefined formats.
Instructions
Render a template with variables
Input Schema
Name | Required | Description | Default |
---|---|---|---|
frontmatter | No | Additional frontmatter | |
targetPath | No | Target note path (for context) | |
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": "Target note path (for context)",
"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"
],
"type": "object"
}