What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? - Meta Stack Overflow most recent 30 from meta.stackoverflow.com 2009-11-23T11:21:53Z http://meta.stackoverflow.com/feeds/question/1777 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user 24 What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Jeff Atwood 2009-07-02T12:21:11Z 2009-11-16T09:54:46Z <p>The Stack Overflow site engine, as you know, uses <a href="http://en.wikipedia.org/wiki/Markdown" rel="nofollow">Markdown</a> for questions and answers. Per the Markdown spec, you are allowed to freely intermix <strong>HTML</strong> and <strong>Markdown</strong> tags. </p> <p>However, we do not allow <em>all</em> HTML tags, as that would be an <a href="http://en.wikipedia.org/wiki/Cross-site%5Fscripting" rel="nofollow">XSS</a> paradise. To that end, the Stack Overflow engine allows only the following <strong>safe, whitelisted subset of HTML tags</strong>:</p> <pre><code>&lt;a&gt; &lt;b&gt; &lt;blockquote&gt; &lt;code&gt; &lt;del&gt; &lt;dd&gt; &lt;dl&gt; &lt;dt&gt; &lt;em&gt; &lt;h1&gt;, &lt;h2&gt;, &lt;h3&gt; &lt;i&gt; &lt;img&gt; &lt;kbd&gt; &lt;li&gt; &lt;ol&gt; &lt;p&gt; &lt;pre&gt; &lt;s&gt; &lt;sup&gt; &lt;sub&gt; &lt;strong&gt; &lt;strike&gt; &lt;ul&gt; &lt;br/&gt; &lt;hr/&gt; </code></pre> <p>The following attributes are allowed on the <code>&lt;img&gt;</code> tag:</p> <pre><code>src="" width="" (up to 999) height="" (up to 999) alt="" title="" </code></pre> <p>The following attributes are allowed on the <code>&lt;a&gt;</code> tag:</p> <pre><code>href="" title="" </code></pre> <p>HTML tags not on this list are stripped from the output. They may render in the client preview but they will always be removed on the server.<strong>You must enter the tags <em>exactly as shown</em>. Any deviation from this list (adding extra spaces, using single quote or no quotes, etc) means the tag will be stripped.</strong></p> <p>We do not and will not allow table tags -- sorry. This is intentional and by design. If you need a quick and dirty "table", use <code>&lt;pre&gt;</code> and ASCII layout.</p> <p>However, if there's some other (safe!) tag you think we should allow, I am open to suggestions.</p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/1787#1787 4 Answer by Chetso for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Chetso 2009-07-02T12:40:05Z 2009-07-02T12:40:05Z <p>This is sort of off-topic, but would it be possible (feasible?) to create something in between quotes and code? There are a lot of questions with quoted error messages or something similar where one wants to preserve line breaks, but also doesn't want syntax highlighting. I know it can be accomplished using pre tags, but it's not readily apparent, especially to newbies. Maybe just a button that will wrap things in pre tags for you?</p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/2043#2043 3 Answer by Joel Coehoorn for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Joel Coehoorn 2009-07-03T01:02:57Z 2009-07-03T01:02:57Z <blockquote> <p>They may render in the client preview but they will always be removed on the server.</p> </blockquote> <p><a href="http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view">That bit kinda bugs me.</a></p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/6394#6394 3 Answer by Jakub Narębski for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Jakub Narębski 2009-07-16T22:22:26Z 2009-07-16T22:22:26Z <p>It would be nice to be able to have <strong>footnotes</strong>; this would require supporting <code>name=""</code> attribute on the <code>&lt;a&gt;</code> tag.</p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/12736#12736 0 Answer by Kelly French for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Kelly French 2009-08-05T22:41:18Z 2009-11-11T04:23:05Z <p>Why not support the table tagset? In <a href="http://stackoverflow.com/questions/1134366/is-there-a-way-to-directly-link-requirements-to-code-units-is-it-a-stupid-idea-t/1135055#1135055">one of my answers</a> I really needed a table to properly present a truth table. I had to fudge it using a fixed width font and lots of '===' and '|' characters to show the columns and rows. </p> <p>It would have been much simpler with table support. I've used another Wiki engine (Kwiki) that supported a markdown-type charset that included using '|' to indicate table columns. The main Kiwi.org site is down so I included a link to the <a href="http://74.125.95.132/search?q=cache%3AAC5EGAHydYIJ%3Awww.kwiki.org/%3FKwikiFormattingRules+kwiki+formatting+rules&amp;cd=1&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;client=firefox-a" rel="nofollow">cached page of Kwiki's formatting rules</a>.</p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/13431#13431 2 Answer by Eamon Nerbonne for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Eamon Nerbonne 2009-08-10T08:32:50Z 2009-08-10T08:32:50Z <p>A spoiler-block and/or small text option would be nice: It's often nice to add (extra) motivating details to a question or answer that aren't essential but help one understand the reasoning underlying a particular issue.</p> <p>Being able to de-emphasize supporting bits of text would make Q's and A's more skimmable.</p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/13453#13453 13 Answer by Grant for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Grant 2009-08-10T13:11:05Z 2009-08-10T13:11:05Z <p>Can we add the acronym tag?</p> <pre><code>To get to the page you have to type the &lt;acronym title="Fully Qualified Domain Name"&gt;FQDN&lt;/acronym&gt;. </code></pre> <p>I like to tag acronyms I use so that I don't alienate readers based on the one acronym they don't understand, IMHO. Sure beats using the FDNT, but we know that GLLT users won't RTFM or the FAQ.</p> <p>(fun quiz, which of the above acronyms are made up?)</p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/13766#13766 1 Answer by Dommy Zee for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Dommy Zee 2009-08-11T16:32:52Z 2009-10-25T21:33:06Z <p>How about the ability to enter HTML Unicode values - like 뷯뾽 -> &#EFBF; &#BDEF; &#BFBD; &#EFBF; ?</p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/22975#22975 1 Answer by Jakub Narębski for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Jakub Narębski 2009-09-22T10:11:15Z 2009-09-22T10:11:15Z <p>The 'definition list' elements are allowed:</p> <pre><code>&lt;dd&gt; &lt;dl&gt; &lt;dt&gt; </code></pre> <p>but I would really like better style for them.</p> <p>See my question (<kbd>feature-request</kbd>): </p> <ul> <li><a href="http://meta.stackoverflow.com/questions/22972/better-style-for-html-definition-list-dl-elements"><strong>Better style for HTML ‘definition list’ <code>&lt;dl&gt;</code> elements</strong></a></li> </ul> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/24142#24142 0 Answer by Atmocreations for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Atmocreations 2009-10-01T11:26:06Z 2009-10-01T11:26:06Z <p>Request: Would be nice to be able to underline some text.</p> <p>Or is this already possible?</p> <p>regards</p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/26928#26928 0 Answer by Joseph for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Joseph 2009-10-22T15:20:02Z 2009-10-22T15:20:02Z <p>Is the mailto syntax not supported for anchor tags?</p> <p>I tried adding it to my profile but it's stripping it out.</p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/29731#29731 -1 Answer by Jon Awbrey for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Jon Awbrey 2009-11-14T04:36:29Z 2009-11-14T04:36:29Z <p>It would be nice to have <code>&lt;center&gt;</code> tags.</p> http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/29901#29901 1 Answer by Andrew Stacey for What HTML tags are allowed on Stack Overflow, Server Fault, and Super User? Andrew Stacey 2009-11-16T09:54:46Z 2009-11-16T09:54:46Z <p>Mathoverflow is using jsMath for rendering mathematical expressions. This causes one or two issues with the Markdown formatter: basically, because Markdown doesn't know that jsMath is going to render the mathematics, it doesn't know not to try to format it itself, which means that subscripts in particular are in great danger of becoming interpreted as emphasis. This can be avoided on a block-level by enclosing the entire paragraph in p tags, but finer control would be nice. One way to achieve this would be to allow div and span tags with the pseudo-attribute 'markdown'. Thus 'markdown=0' means "turn off markdown in this element" whilst 'markdown=1' means "turn it on" (in case it's already turned off by some other rule). This is a bit like that already in place with PHP Markdown's Extras.</p>