Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nested macro stackOverflow if using the same variable names #111

Open
ps-george opened this issue Mar 13, 2018 · 0 comments
Open

Nested macro stackOverflow if using the same variable names #111

ps-george opened this issue Mar 13, 2018 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@ps-george
Copy link
Collaborator

{% macro x(arg)
{{arg}}
%}
{% macro y(arg) 
{{ x({{arg}}) }}
%}

workaround:

{% macro x(arg)
{{arg}}
%}
{% macro y(arg') 
{{ x({{arg'}}) }}
%}
@ps-george ps-george added the wontfix This will not be worked on label Mar 13, 2018
@ps-george ps-george reopened this Mar 17, 2018
@ps-george ps-george assigned ps-george and ymherklotz and unassigned ps-george Sep 21, 2019
@ps-george ps-george added bug Something isn't working and removed wontfix This will not be worked on labels Sep 21, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants