Properties
Use $.properties
property to inherits properties from specified list templates.
The property accepts a list of templates.
Inherits properties from another template
Here a template with some properties:
John Template.md
---
tags:
- toreview
author: John Doe
year: 2025
---
I can inherits them by adding $.properties
to my other template:
Another Template.md
---
tags:
- book
$.properties:
- "[[John Template]]"
---
The results will be:
Note.md
---
title: My Book
author: John Doe
year: 2025
tags:
- book
- toreview
---