Nested templates don't work properly #133
Unanswered
everydayanchovies
asked this question in
Q&A
Replies: 1 comment 2 replies
-
More precisely, template-a is inserted after the region which is watched to replace the value of y. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When expanding a template while filling in another template, the y in the form (p x y) no longer updates.
Consider these two templates:
(template-a "abc") (template-b (p "" var) n (format "%s" var))
When first expanding template b and then expanding template a within template b, I expect
"abc
abc",
but instead I get
"abc"
Beta Was this translation helpful? Give feedback.
All reactions