Sorry I’m very new to markdown and all of this. But also it’s awesome. And Templater has been amazing for setting up templates to just get things easily done
One of the things I want to do specifically is use it is a means for storing decks from the video game Hearthstone in, with each deck having it’s own note.
For example, here are the first three lines of a random deck code of mine:
### Soul Rafaam
# Class: Warlock
# Format: Wild
So if I have a template with the properties Name, Class, Format, is it possible to have those properties auto-populated based off what’s in the heading? So that if I pasted that code into an empty note, and applied the appropriate template, the properties would auto-populate with the first line for Name, second line for Class, and third line for Format (possible for string editing to remove the “Class:” and “Format:”?)
My assumption is “technically it is possible if you want to write a plugin for it.” As just right off my first issue is “how would it define where the data comes from?” And the only answer I would have is based off heading count. So for instance something like “{header1}” being the text of the first header of the file, “{header2}” being the second text, etc. But that gets messy quick for mass appeal, hence the assumption of “if you write it yourself”