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

Macros should not generate a breakline #1003

Open
ylacaute opened this issue Feb 7, 2023 · 0 comments
Open

Macros should not generate a breakline #1003

ylacaute opened this issue Feb 7, 2023 · 0 comments

Comments

@ylacaute
Copy link
Contributor

ylacaute commented Feb 7, 2023

This code:

{%- macro test() -%}
  {%- set foo = "world" -%}{{- foo -}}
{%- endmacro -%}
hello: {{- test() -}}

generates this expected output:

hello: world

But this code:

{%- macro test() -%}
  {%- set foo = "world" -%}
  {{- foo -}}
{%- endmacro -%}
hello: {{- test() -}}

generates this unexpected output :

hello: 
  world

I thought by using {{- ... -}} it would remove any spaces and breaklines, before and after, but it does not. Is that really expected or a bug ?

Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant