You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Paul Benedict <pb...@apache.org> on 2008/09/13 23:34:17 UTC

Doxia: Can I use it outside of Maven?

I want to integrate Doxia into a web application of mine. I like the
APT support it has. Is this possible?

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Doxia: Can I use it outside of Maven?

Posted by Dirk Olmes <di...@xanthippe.ping.de>.
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: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org