Skip to content

Instantly share code, notes, and snippets.

@jagedn
Created May 19, 2016 07:22
Show Gist options
  • Save jagedn/304f7dca3eb11f8c59b9976576a0773e to your computer and use it in GitHub Desktop.
Save jagedn/304f7dca3eb11f8c59b9976576a0773e to your computer and use it in GitHub Desktop.
remove whitespace in g:each
default index.gsp:
<ul>
<g:each var="c" in="${grailsApplication.controllerClasses.sort { it.fullName } }">
<li class="controller"><g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link></li>
</g:each>
</ul>
result:
<ul>
<li class="controller"><a href="/books">glicerine.BookController</a></li>
</ul>
----------------------
index.gsp without spaces:
<ul><g:each var="c" in="${grailsApplication.controllerClasses.sort { it.fullName } }"><li class="controller"><g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link></li></g:each></ul>
and the result:
<ul><li class="controller"><a href="/books">glicerine.BookController</a></li></ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment