The best way to tag template and remove when clone. #997
Answered
by
welpdx
Another5405
asked this question in
Help
-
I want to use tag to manage template, I did try <% tp += " #Tag "%> or <% tR += " #Tag "%> Have any way to solve this? Custom function will be my last option cause I may use multi vault. Thankyou. |
Beta Was this translation helpful? Give feedback.
Answered by
welpdx
Jan 24, 2023
Replies: 1 comment 2 replies
-
I think you are looking for <%* tR += " #Tag " %> tR is to output the text for more info, read here: https://silentvoid13.github.io/Templater/commands/execution-command.html#how-to-output-a-value-from-a-javascript-execution-command- Alternatively, use: <% " #Tag " %> both would ouput " #Tag " |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Another5405
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you are looking for
tR is to output the text
when using tR add an asterisk to
<%
for more info, read here: https://silentvoid13.github.io/Templater/commands/execution-command.html#how-to-output-a-value-from-a-javascript-execution-command-
Alternatively, use:
both would ouput " #Tag "