<!-- Layout Start --> <!-- First Line: Title and Time Created on the same line --> <div style="display: flex; justify-content: space-between; align-items: center;"> <b style="color: #7BCCB5; margin: 0; font-size: 1em;">Technical Note-note</b> <b><span style="font-size: 1em;">Created: 2024-12-22 03:50:08</span></b> </div> <!-- Second Line: Display Reference Material if exists --> <!-- Third Line: Placeholder for syncing tags --> <p><span style="font-size: small; color: #728FCE; tags-placeholder">21thisisfortags12</span></p> <!-- Layout End --> # General Template An overview of my general template I use for creating "general" Notes. Here in all its beauty: ```js ref:![[General-Note]] --- title: General Template aliases: [] categories: General cssclass: note created: 2024-12-21 01:56:22 type: null tags: default_tag hub: false --- <!-- Layout Start --> <!-- First Line: Title and Time Created on the same line --> <div style="display: flex; justify-content: space-between; align-items: center;"> <b style="color: #7BCCB5; margin: 0; font-size: 1em;">null-note</b> <b><span style="font-size: 1em;">Created: 2024-12-21 01:56:22</span></b> </div> <!-- Second Line: Display Reference Material if exists --> <!-- Third Line: Placeholder for syncing tags --> <p><span style="font-size: small; color: #728FCE; tags-placeholder">21thisisfortags12</span></p> <!-- Layout End --> ``` This code is basic and straight-forward, something I am happy with. It will definitely be changed in the future. I am considering adding triggers for JS code to load further templates depending on the type chosen. However the fear of overcomplicating what should be a note taking system is a consideration. For now, this is more than functional, and basically fills the frontmatter with a healthy amount of metadata for later analysis, whilst offering a system that minimises "property-confusion"; Misspelling shouldn't be a reason for data collection failure. A line by line explanation will follow.