So EnderCompiler will check the syntax of the dynamic data, and the data can be put anywhere in the element. So this: ```html <div id="element" @@(rule)(unload)>...</div> <div _dynamic="name1">...</div> <div @@(defineder)(name2) @@(rule)(constant)>...</div> ``` Would be compiled to: ```html <div id="element" _dynamic="@@(rule)(unload)">...</div> <div _dynamic="name1" >...</div> <div _dynamic="@@(defineder)(name2) @@(rule)(constant)">...</div> ```
So EnderCompiler will check the syntax of the dynamic data, and the data can be put anywhere in the element.
So this:
Would be compiled to: