Which HTML tags are supported in Swing components? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T17:15:35Zhttp://stackoverflow.com/feeds/question/872871http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/872871/which-html-tags-are-supported-in-swing-components3Which HTML tags are supported in Swing components?DR2009-05-16T17:38:05Z2009-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#8728800Answer by Draemon for Which HTML tags are supported in Swing components?Draemon2009-05-16T17:41:06Z2009-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#8728991Answer by Rob for Which HTML tags are supported in Swing components?Rob2009-05-16T17:51:30Z2009-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#8730821Answer by Tom Hawtin - tackline for Which HTML tags are supported in Swing components?Tom Hawtin - tackline2009-05-16T19:14:32Z2009-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#12448230Answer by Allain Lalonde for Which HTML tags are supported in Swing components?Allain Lalonde2009-08-07T13:55:10Z2009-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>