Is there a way to template "<% %>" #641
-
When I use <% <% tp.file.cursor(1) %> %> it gives me an error because it execute the empty syntax. If I use <% <% tp.file.cursor(1) %> %> to supposedly escape it it puts the added supposed escape characters too and don't work, what should I do to make a template for "<% %>"? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Can you let us know what you want to do? Anyways, if I am correct in assuming that you want to output
Basically, enclose the code you want to output in backticks But if this is not what you want, can you please elaborate on what you want to do? Hope that helps ~Welp |
Beta Was this translation helpful? Give feedback.
Can you let us know what you want to do?
Anyways, if I am correct in assuming that you want to output
<% tp.file.cursor(1) %>
, try this:Basically, enclose the code you want to output in backticks
`
.But if this is not what you want, can you please elaborate on what you want to do?
Hope that helps
~Welp