Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-beta-2, 1.0-beta-3, 1.0-beta-4
-
None
-
None
Description
Groovy Markup with both content data and attribute doesn't work. I have testet both with MarkupBuilder and DOMBuilder.
I have tested the following which doesn't work:
url(label: 'test')
url(label: 'test')
{ 'some text content' }url(label: 'test') ['some text content']
This work, only attribute:
url(label: 'test')
This work, only content:
url('some text content')
What should the correct syntax be?