Created
June 10, 2015 08:46
-
-
Save seb-thomas/73e2e8f23cdcef44da6f to your computer and use it in GitHub Desktop.
Twig loop whitespace control
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% set value = 'no spaces' -%} | |
| var qqq = [{ | |
| {%- for block in officeLocations.officeLocations -%} | |
| "lat": {{- block.lat -}},"lng": {{- block.lng -}} | |
| {%- if not loop.last -%} },{ {%- endif -%} | |
| {%- endfor -%} | |
| }]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment