jdaugherty opened a new issue, #66: URL: https://github.com/apache/grails-intellij-plugin/issues/66
As reported by customer ([forum thread](http://www.jetbrains.net/devnet/message/5263276)): current GSP formatting algorithm behaves at the following manner: **Before** > <!DOCTYPE html> <html lang="en"> <head> <style type="text/css" media="screen"> @import url("${resource(dir: 'styles', file: 'base.css')}"); @import url("${resource(dir: 'styles', file: 'tabs.css')}"); @import url("${resource(dir: 'styles', file: 'navigation.css')}"); @import url("${resource(dir: 'styles', file: 'splitter.css')}"); <g:if test="${pageProperty(name: 'body.class') == 'administration'}"> @import url("${resource(dir: 'styles', file: 'administration.css')}"); </g:if> </style> </head> <body class="${pageProperty(name: 'body.class')}"> </body> </html> **After** > <!DOCTYPE html> <html lang="en"> <head> <style type="text/css" media="screen"> @import url("${resource(dir: 'styles', file: 'base.css')}"); @import url("${resource(dir: 'styles', file: 'tabs.css')}"); @import url("${resource(dir: 'styles', file: 'navigation.css')}"); @import url("${resource(dir: 'styles', file: 'splitter.css')}"); < g:if test = " ${ pageProperty(name: 'body.class') == 'administration' } " > @import url("${resource(dir: 'styles', file: 'administration.css')}"); </ g:if > </style> </head> <body class="${pageProperty(name: 'body.class')}"> </body> </html> The task is to fix GSP formatting algorithm --- *Imported from [IDEA-54974](https://youtrack.jetbrains.com/issue/IDEA-54974) · Type: Bug · Votes: 0* *Comments, attachments, dates and reporter are not part of the export — follow the link above for the full history.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
