On Thu, 08 Nov 2012 01:17:37 -0200, nhhockeyplayer nashua <nhhockeypla...@hotmail.com> wrote:


Hi Folks,

Hi!

Tapestry is validating html markup in the templates.

This isn't correct. Tapestry won't complain about a <p> inside a <p>, which is invalid HTML. Tapestry just parses templates as XML.


<table>
    <tr>
        <td>
        </td>
    </tr>
</table>

If I specify something like this...
<table>
    <tr>
        <td>
        </td>
    ${someThingSpecial}
</table>

It flags the error... which can be nice to have.

But in that line I and to do something special... and crafty with my markup... from within my java class. I cant do anything special or crafty if tapestry is forcing me to put the html markup there.

Why the hell do you want to generate invalid HTML? Is it just me or you have a fondness for bad practices?

Is there a way to shut off this tag checking?

No.

--
Thiago H. de Paula Figueiredo

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to