Which HTML tags are supported in Swing components? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T17:15:35Z http://stackoverflow.com/feeds/question/872871 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/872871/which-html-tags-are-supported-in-swing-components 3 Which HTML tags are supported in Swing components? DR 2009-05-16T17:38:05Z 2009-08-07T13:55:10Z <p>Many Swing components support embedded HTML, but I cannot find any official documentation on that subject. (Everything on Sun's pages about HTML seems to be targeted at JEditorPane)</p> <p>So: Which HTML tags are supported in Swing components? </p> <p><strong>EDIT:</strong> Although I said that I'm missing "official documentation", I'd also like any "unofficial" documentation.</p> http://stackoverflow.com/questions/872871/which-html-tags-are-supported-in-swing-components/872880#872880 0 Answer by Draemon for Which HTML tags are supported in Swing components? Draemon 2009-05-16T17:41:06Z 2009-05-16T17:41:06Z <p>I don't know exactly what tags are supported, but I would suggest that you restrict yourself to bold/italics (or even better strong/em assuming it supports them) and img tags. Anything else is likely to cause headaches, and probably means you're stuffing too much into that component.</p> http://stackoverflow.com/questions/872871/which-html-tags-are-supported-in-swing-components/872899#872899 1 Answer by Rob for Which HTML tags are supported in Swing components? Rob 2009-05-16T17:51:30Z 2009-05-16T17:51:30Z <p>I believe it's a narrow subset of HTML 3.x, although off the top of my head, I don't remember where I read that.</p> http://stackoverflow.com/questions/872871/which-html-tags-are-supported-in-swing-components/873082#873082 1 Answer by Tom Hawtin - tackline for Which HTML tags are supported in Swing components? Tom Hawtin - tackline 2009-05-16T19:14:32Z 2009-05-16T19:14:32Z <p>As with most things with Swing, the best course of action is to look at the source.</p> http://stackoverflow.com/questions/872871/which-html-tags-are-supported-in-swing-components/1244823#1244823 0 Answer by Allain Lalonde for Which HTML tags are supported in Swing components? Allain Lalonde 2009-08-07T13:55:10Z 2009-08-07T13:55:10Z <p>This guy feels your pain and is at least starting to collect his experiences:</p> <p><a href="http://retrovirus.com/brunch/2003/04/html-support-in-jeditorpane/" rel="nofollow">http://retrovirus.com/brunch/2003/04/html-support-in-jeditorpane/</a></p>