I have a JTextPane
with a StyledDocument
and RTFEditorKit
implemented.
How can I add bullet points (preferrably multi-level ones) onto the JTextPane
?
Figured it out doing this:
HTMLEditorKit.InsertHTMLTextAction bulletAction = new HTMLEditorKit.InsertHTMLTextAction("Bullet", "<li> </li>", HTML.Tag.BODY, HTML.Tag.UL);