Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Shim G
Shim G
2,611 Points

Please help with whitespace issue on a Macro

The code below (finally) worked for the hidden email challenge. Please tell me how to do this without putting everything on one line to avoid the jinja whitespace issue.

{% macro hide_email(user) %}

  {{ user.email.split('@')[0][0] }}{% for c in user.email.split('@')[0][1:] %}*{% endfor %}@{{ user.email.split('@')[1] }}

{% endmacro %}

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Adding a hyphen - inside of the jinja2 braces will strip whitespace between them.

There would be no added whitespace between the closing -%} and the next opening {%-

As mentioned in this StackOverflow answer:

Change your loop to strip white spaces from the top AND bottom of the output (notice extra "-" at the for loop close):

     {% for key, value in querystring.items() -%}
          {{ key }}: '{{ value }}'
     {%- endfor %}

Docs: http://jinja.pocoo.org/docs/dev/templates/#whitespace-control

Shim G
Shim G
2,611 Points

Thank you! It wasn’t very clear in the documentation.