-
In relation to this issue (farling42/obsidian-import-json#57) on my JSON importer module... JSON Importer simply calls one of Is there some other function which my module should call if the Templater plugin is enabled in order for the templates to be processed during note creation? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Here's the pseudocode logic for how Templater decides whether or not to execute when a new file is created.
Hopefully that helps. Let me know if you need any more guidance. |
Beta Was this translation helpful? Give feedback.
Here's the pseudocode logic for how Templater decides whether or not to execute when a new file is created.
app.vault.on("create")
event, then checks a few conditions (must meet all of the following conditions):Hopefully that helps. Let me know if you need any more guidance.