Hi, In my tapestry app, in some cases, I want the HTML to be entirely generated without Tapestry's intervention.
For example, hypothetically, I have MyPage.java but a missing or empty MyPage.tml whose content does not matter. Ideally, MyPage.java would somehow conjure up the contents and my HTML would not be touched by bootstrap (or however it's done). I tried multiple things, including trying to override the rendering steps, but no matter what I do, Tapestry either complains there's no content (even though there is), or it adds the <html><head> and all the stuff I really don't need. Any idea what I should do? Jonathan