Converting StyledDocument to plain HTML
So basically I have a JTextPane where people can press ctrl+i or a button and go into italics mode. I do this by using the classes StyleDocument, Style and StyleConstants. The way I do this can be seen in the addStyleToDocuments method in http://java.sun.com/docs/books/tutorial/uiswing/examples/components/TextSamplerDemoProject/src/components/TextSamplerDemo.java.
Anyways, so I have my styled JTextPane and now I want to convert it to html. How can I do this?

