Paul Benedict wrote:
> I want to integrate Doxia into a web application of mine. I like the
> APT support it has. Is this possible?
Sure, why not?
I have used doxia to generate a simple html report like this:
Writer writer = ...
Sink sink = new XhtmlSink(writer);
sink.head();
sink.title();
sink.text("this is the document's title");
sink.title_();
....
sink.close();
-dirk
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]