A quick question, which is better performance and memory wise:
<t:outputText escape="false" value='<tr><td>'/>
or just a straight
<tr><td>
I ask because I haven't found any documentation regarding which is best performance wise and for general maintainability of the JSFs. I believe the latter results in more maintainable code (you can identify mismatched tags easier), but I'm unaware if there are reasons someone would want to explicitly output html elements using outputText.