In my experience, new lines are ok inside of properties, but NOT ok inside of a tag.
For example, this is ok:
<Button localtext="this is ok
"></button>
This is NOT ok:
<Button localtext="this is not ok"
></button>
Notice that in the first example, the newline occurs inside the localtext properties, but in the second line its inside the button but NOT inside a property.
Also, keep in mind this is just what i've noticed in my tinkering.
|