Templater
Templater copied to clipboard
Merge properties in the template with properties in the note
The Templates core plug-in now merges the YAML properties in the template with the ones already in the note.
Template:
---
category: test
tags:
- test
---
Some test text
Note:
---
tags:
- draft
---
This is my text
When I apply the template, using the core plug-in, the text in the note becomes:
---
tags:
- draft
- test
category: test
---
This is my text
Some test text
If I do the same with Templater, what I get is:
---
tags:
- draft
---
This is my text
---
category: test
tags:
- test
---
Some test text
Originally posted by @paolo-santucci in https://github.com/SilentVoid13/Templater/issues/1191#issuecomment-1741874483
This would be a great improvement!
https://forum.obsidian.md/t/new-properties-and-templater-prompts-and-commands/66425/9?u=briandbecsi
Here's your work around.
-Brian