The Stack Exchange engine, as you know, uses Markdown for questions and answers. Per the Markdown spec, you are allowed to freely intermix HTML and Markdown tags.

However, we do not allow all HTML tags, as that would be an XSS paradise. To that end, the Stack Overflow engine allows only the following safe, whitelisted subset of HTML tags:

<a>
<b>
<blockquote>
<code>
<del>
<dd>
<dl>
<dt>
<em>
<h1>, <h2>, <h3>
<i>
<img>
<kbd>
<li>
<ol>
<p>
<pre>
<s>
<sup>
<sub>
<strong>
<strike>
<ul>
<br/>
<hr/>

The following attributes are allowed on the <img> tag: (attributes order is important - putting different order e.g. height before width will strip the tag)

src=""
width="" (up to 999 - do not include the 'px' extension)
height="" (up to 999 - do not include the 'px' extension)
alt=""
title=""

The following attributes are allowed on the <a> tag:

href=""
title=""

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.You must enter the tags exactly as shown. Any deviation from this list (adding extra spaces, using single quote or no quotes, etc) means the tag will be stripped.

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 <pre> and ASCII layout.

However, I am open to suggestions. Are there some other (safe!) tags you think we should allow?

Return to FAQ index

link|improve this question
51  
Small, smaller, large, and larger. – Dave Jarvis Aug 30 '09 at 18:31
19  
Note that the attributes on <img> and <a> must occur in exactly the order given here. So <img alt="foo" src="http://bar.com/baz.jpg"> won't work, but <img src="http://bar.com/baz.jpg" alt="foo"> will. – Anton Geraschenko Nov 12 '09 at 17:58
Maybe not just "ASCII layout" but "fixed-width" or "ASCII fixed-width" – Pete Wilson Apr 15 '11 at 10:04
1  
A couple of people have sort of hinted at this, but there is limited markup available for comments. There is more information on this here - meta.stackoverflow.com/questions/63286/… - but a really useful tip is to click on the help link under Add Comment, as this will provide you with a full list. This is a great posts/wiki by the way. – Aaron Newton Dec 5 '11 at 21:48
tables - why not? what is the intention and design behind not allowing users easily present their data? and no, they can't use ASCII layout, because they don't know how to do it - and didn't find it in the help texts either – deathApril Apr 1 at 20:40
feedback

24 Answers

Can we add the acronym tag?

To get to the page you have to type the <acronym
 title="Fully Qualified Domain Name">FQDN</acronym>.

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.

(fun quiz, which of the above acronyms are made up?)

link|improve this answer
31  
and <abbr title="Abbreviation">abbr</abbr> too! – James Cassell Oct 7 '09 at 1:32
5  
FDNT and GLLT, but then again it DOYD of "made up." – Matt Ball Nov 13 '09 at 22:14
2  
Is it really needed? If an average programmer (acronyms are part of both the culture and the profession) can't find the definition quickly through a search engine, wouldn't your question, answer, or comment be overall better not using it? YMMV. – Gnome Dec 1 '09 at 8:08
3  
@Roger At the very least, it would add that little bit of extra semantic meaning that search engines would then be able to pick up on. It also caters to those really pedantic users out there (and they ARE out there!). Plus, as the OP suggests, it's more inclusive. – Phil.Wheeler Dec 21 '09 at 2:24
2  
I'd prefer an easier-to-write syntax (not HTML) for this. – Nicolás Jan 4 '10 at 5:21
16  
@Gnome: Sometimes acronyms are ambiguous; Grant's not only being kind here, but also helping ensure that his meaning is understood. – T.J. Crowder Mar 23 '10 at 14:27
@TJC: I will include a definition in the text if it's clearly ambiguous, or a link to more information (Wikipedia is good) which is often much more useful than the merely expanded value. I don't want a cluttered UI (underlining, background colors, text colors, etc. all already are used for something) and it can often be made to flow nicely with the text. Comments work too, especially with the new comment notifications. Plus you could always ask a question on the specific site about it. :) – Gnome Mar 23 '10 at 15:07
1  
you could just use a link tag to do it; <a href="boguslink"; title="Fully Qualified Domain Name">FQDN</a> It does highlight them though which may not be ideal for you. – will Aug 28 '10 at 23:02
23  
html5 is getting rid of acronym as acronyms are abbreviations. Use abbr instead. – zzzzBov Nov 30 '10 at 17:54
7  
abbr please, thanks! – Avi Flax Apr 5 '11 at 3:58
1  
@will: Good Idea, but you can also give an actual link as reference, not just "boguslink". It will be more usefull, and less confusing (when people see a link, they might try to follow it...). <a href="http://en.wikipedia.org/wiki/Fully_qualified_domain_name" title="Fully Qualified Domain Name">FQDN</a>. In most cases it will be easy to find a relevant link somewhere, probably on Wikipedia. – awe Feb 14 at 9:22
1  
@awe: Also, Markdown has its own syntax for titles: [FQDN](http://en.wikipedia.org/wiki/Fully_qualified_domain_name "Fully Qualified Domain Name") = FQDN and it works in comments too. – minitech Feb 25 at 14:38
@minitech: Good point. I actually knew that, but I was just following the form @will was using in his comment. I agree that the markdown syntax is the best use. – awe Feb 27 at 8:34
feedback

I'd like to see the <small> tag enabled.

link|improve this answer
6  
+1 some size variation would come in handy every once in a while – David Zaslavsky May 24 '10 at 4:29
11  
as a workaround, if you want a whole paragraph small, wrap it in <sup> or <sub> and it looks about the same. – Kip Dec 10 '10 at 21:23
2  
Would be very cool if this was enabled. <sup> is nice, but <small> is more intuitive. – Kees C. Bakker May 10 '11 at 11:44
1  
@Kip: On some other SE sites, <sup> and <sub> looks strange if your meaning was just smaller text. I am thinking of sites that use css style that actually raises <sup> sligtly higher and lowers <sub> slightly below the normal text. English SE is a good example of this. – awe Feb 14 at 10:39
feedback

Request: Wiki Table Syntax

Why not support a subset of the table tagset? In one of my answers 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. In another answer I needed to explain relationships as a graph and getting everything to align correctly too a lot of trial and error.

It would have been much simpler with table support. I've used another Wiki engine (Kwiki) that supported a markdown-type charset that used '|' to indicate table columns; a simple and elegant solution.

link|improve this answer
20  
+1 for markdown tables – outis Dec 29 '10 at 1:04
7  
In the meantime, you can use this page to build ASCII tables: sensefulsolutions.com/2010/10/format-text-as-table.html – Veehmot Oct 19 '11 at 18:50
I'd also like some table functionality. I've had a couple of cases where it would have been helpful to have a way to structure a table instead of formatting it manually with ASCII. – Aren Cambre Mar 11 at 18:29
i think most of the questions could find a use for tables - for sample data.. – deathApril Apr 1 at 20:44
Tables are fine for many uses, but if not used properly, it can really mess up the uniform look of a post. One important aspect of limiting HTML tags is that you should not be able to make the page look like something completely different than the fact that it is bascally just a QA site. It is not a blog... – awe May 18 at 10:46
feedback

Why del but not ins? I just edited a post where somebody had trouble getting some XML to display and had substituted square brackets for < and >. I then used del to strike-through their explanation of their formatting problem and ins around my explanation of why and how I'd reformatted the code; but as ins is stripped out, that aspect of the semantic relationship of the two sentences has been lost.

link|improve this answer
1  
If the reader wants to see what has changed in a post, he can just click the date/time link of the edit, and look at the revision history. People that do not follow one particular post thorowly through history, will normally not bother that post even had been changed, the important is what the result is - which is what it says currently. – awe Feb 27 at 8:43
feedback

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.

Being able to de-emphasize supporting bits of text would make Q's and A's more skimmable.

link|improve this answer
9  
No thanks, I like the readability of SO. "Expandable" sections don't add nearly enough value compared to the readability cost that comes with them. – TM. Oct 13 '09 at 16:51
4  
it's precisely because of readability that I'd like em in: people tend now to exclude code snippets, sample data, etc. and tend not to include sufficient explanation. Short questions tend to be answered more readily, so that poses a problem: do you just leave out relevant bits and hope people understand - and then wait until people explicitly ask for it (and have invested time understanding your Q), and then add it (this works because once people have read and commented, they're way more likely to reread the longer more boring stuff)? If so, that's just wasting people's time. – Eamon Nerbonne Dec 7 '09 at 15:00
1  
spoiler is completed see meta.stackoverflow.com/questions/1191/… – Jeff Atwood Dec 16 '10 at 1:22
The mouseover spoiler is not so terrible. I just can't stand the collapsible "click this tiny 2px-by-2px +" – TM. Mar 2 '11 at 19:49
feedback

I would like to include images in my postings that reference a URL containing special characters like $, (blank), <, >, \, *, etc.

This way I could use some image rendering services easier:

  • LaTeX equations:

    LaTeX equations

  • UML Diagrams:

    UML Diagrams

  • Other Diagrams:

    ASCII Diagram

These services encode the description of the image inside the URL. I can construct the URL by translating the special characters to unicode numbers, but that makes the URL unreadable and that's really bad when I want to edit my code again.

link|improve this answer
5  
there's really no way around encoding them -- just use meyerweb.com/eric/tools/dencoder – Jeff Atwood May 13 '10 at 13:10
5  
I wish it was easier to “favorite” an answer, not because I agree with the request (I don't) but because I like what it links to. – Donal Fellows May 31 '10 at 11:56
And allow id hrefs, so we can link to another answer in the page (to link to this answer, for example, we should be able to use <a href="#answer-4975">example</a>). – user158783 Mar 14 '11 at 21:16
4  
@user158783: You should probably just copy the address from the "link" link on the answer and paste that in: it's possible that your answer and that answer won't end up on the same page, if the question gets enough answers. – SamB May 25 '11 at 3:11
LaTeX(MathJax) is enabled on many sites. Physics, math, mathmeta, etc (I think bio as well). Ironically it's not enabled in tex.SE, but that's probably because SE ltex is limited to math and not the other stuff that is usually discussed at tex. – Tim ManishEarth Mar 19 at 4:49
@user158783: As SamB said, you can already link to answer - it is provided as permalink in the link below each answer. You even have permalinks to comments, which are presented in the timestamp of each comment. – awe May 18 at 10:53
feedback

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?

link|improve this answer
5  
<pre> is your friend here... I've edited a lot of Q's and A's on SO to change code to pre when I've spotted the issue and had the time. – RBerteig Jul 16 '09 at 7:05
9  
<pre> is not really my friend, as it needs manual encoding of things that look like HTML tags. – Arjan Sep 26 '09 at 12:18
feedback

Request: Would be nice to be able to underline some text.

Or is this already possible?

link|improve this answer
36  
conflicts with hyperlinks, which are typically underlined. Underlining is of extremely limited use anyway IMO. – Jeff Atwood Oct 2 '09 at 10:07
23  
@Jeff Atwood: Phooey! Your comment is of extremely limited use. Sometimes underlining is <u>exactly`</u>` (damn) the right emphasis. I fail to see how it "conflicts" with hyperlinks. The fact that hyperlinks are often displayed as underlined (and in my setup, they're not, so there!) doesn't mean that underlined text is incompatible on a page that also has hyperlinks. That's preposterous. Now if you have underlined text that's also the same color as your hyperlinks and changes the mouse cursor when you mouse over it, but doesn't actually do anything when clicked, then that's a problem. – P Daddy Dec 9 '09 at 18:04
27  
Traditionally, underlining is how you make something bold that you don't have a bold font for. Because bold is available, reserving underlining for hyperlinks seems very sensible. – rjmunro Jan 22 '10 at 16:06
2  
@Jeff: What do you mean by "conflicts with hyperlinks"? – serhio Mar 1 '10 at 10:14
4  
Underlining is used for titles of books/papers as well. (Yes, I know you can quote them, or use italics, but underlining is extremely common as well.) – warren Apr 27 '10 at 12:58
6  
I second underlining. As long as links are colored differently (in a manner distinguishable to our color blind brethren), the two won't be confused. Besides, SO styles links with underlines only on hover. – outis May 4 '10 at 21:24
14  
@warren: Italicization (or even making things bold) is better than underlining, which just looks tacky. It's only used in reference lists where the style is ancient and crufty. – Donal Fellows May 31 '10 at 11:50
I too would like underlining. I agree that it's not the right way to call out a title (using underlining for this as @warren mentions is actually notation meaning "italicize this in the typeset version", which may be why @outis thinks it looks tacky), but it can occasionally be handy. (I wanted to use it in <code> just now.) – SamB Sep 24 '10 at 17:45
1  
+1 for underline; seems like a silly restriction. – Nariman Oct 24 '10 at 17:14
1  
I would like to have the underline ability too. I usually want to emphasize one word in a sentence without having it stand out from the whole post, which will be the effect of using bold text. I can't become friend with using italics, since it doesn't really stand out for me and doesn't have the same meaning for me than using italics. I also don't see the big confusion with hyperlinks. Hyperlinks usually have a different color and I recognize them more on the color than the underlining. – Peter Schuetze Dec 21 '10 at 16:55
15  
To all those that think underlining is good I suggest you read a really nice book about design and especially typography in general The elements of typographic style by Robert Bringhurst. Emphasis should be done by italicization hence the em tag that means emphasize. Italics don't interfere with text block colour and are perfect for such things. Underlining is especially poorly made on computers and should be avoided whenever possible. I agree with the fact that underline is not supported. – Robert Koritnik Feb 3 '11 at 9:19
1  
BTW: Links in comments use border for underlining which is better than using default underlining. It could be solid just as well (1px solid #999), but is more subtle as dotted. It's just unusual but still much better than default text underlining. – Robert Koritnik Feb 3 '11 at 9:21
2  
Underlining would be nice for instances when you're doing a fill-in-the-blanks on EL&U to explain the usage of a word. – advs89 Feb 26 '11 at 1:24
3  
People who have this knee-jerk reaction against underlining need to get out of the techie mindset - there are now StackExchange sites for subjects that have nothing to do with computers. As for conflicting with links, (1) that only applies if you use underlines incorrectly, and (2) what underlines on links? I don't see any underlines on links on SE. – Marti May 18 '11 at 0:11
as I recall, underlining is what you do to titles when you don't have italics :P and style is style, there's no 'right' answer on this one or we'd be able to convince each other, right? right :P – shelleybutterfly Aug 16 '11 at 4:19
feedback

What about the <var> tag? The XHTML 1.0 schema I have in my XML editor tells me that the var tag:

Indicates an instance of a variable or program argument.

Which seems like a pretty useful thing to have along with the <kbd> tag on a website about programming. It can be used for a few other things than just variables and arguments: path names of URIs (like in this answer), file names (e.g. .vimrc, C:\Windows\), keys in hashes/dictionaries, enumerations in languages like Java, maybe also type or class names. How charitably you interpret 'variable-like' is an interesting matter - I basically use it as a subtype of the 'code' element. It'd be pretty nice to be able to use it on StackOverflow and SuperUser (and maybe ServerFault - can't imagine an immediate use for it although they undoubtedly exist).

link|improve this answer
1  
+1. Semantic markup is good. – Mechanical snail Aug 4 '11 at 22:14
feedback

It would be nice to be able to have footnotes; this would require supporting name="" attribute on the <a> tag.

link|improve this answer
In HTML, a link to an anchor (#foo) doesn't need a name attribute in an a tag. It works with an id attribute in any element whatsoever. – Nicolás Jan 4 '10 at 5:20
1  
See also "Markdown footnotes?" at meta.stackoverflow.com/questions/5017/markdown-footnotes – Arjan Mar 1 '10 at 8:43
feedback

Math Overflow 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.

link|improve this answer
3  
we auto-escape anything within $$ and $$ on sites where MathJax is enabled now – Jeff Atwood Dec 16 '10 at 1:23
@Jeff: Great! That should make life easier (shame it can't be back-ported to SE1.0 for MathOverflow). – Andrew Stacey Dec 16 '10 at 8:38
1  
@Jeff: Just thought: do you do single dollars as well, since inline mathematics is where it is the most annoying. – Andrew Stacey Dec 16 '10 at 8:40
@AndrewStacey yep, single dollars work as well. – Tim ManishEarth Mar 19 at 4:51
feedback

It would be nice to have <center> tags.

link|improve this answer
Why? Just pad it out with &nbsp; – random Nov 14 '09 at 4:48
Or use a code block and pad out with spaces. – Ladybug Killer Nov 14 '09 at 9:28
11  
Oh good, ASCII lovers &mdash; I must be in the right place &mdash; after all these years of being $\lambda$-basted about my ASCII graphics! And now that I finally have a few respectable images that I need to center like all the best style sheets say I should &hellip; [insert ironicon here] – Jon Awbrey Nov 14 '09 at 15:30
@random &nbsp; didn't work in my case, though it seems to clearly have worked in your case o_O – Cawas Mar 23 '11 at 21:22
If images were meant to be centered, it would be in the site's style sheet, no? – endolith May 27 '11 at 16:00
Center tags are old proprietary elements that have long been deprecated. Something like this would be nice, but they should be converted to CSS centering with a combination of margin: 0 auto;, and text-align: center;. – Web_Designer Dec 23 '11 at 18:17
What for? That sounds annoying, save maybe for tag wiki headers. – minitech Feb 25 at 14:44
feedback

What about tables?

link|improve this answer
That's the feature that's deliberately not supported. I'm in two minds about it; on the one hand, there's a lot of problems (and answers) which are best described with tables, but on the other hand, they'd be subjected to massive abuse. – Donal Fellows Jun 26 '10 at 16:04
4  
@Donal: What abuse? – endolith May 27 '11 at 16:02
feedback

They may render in the client preview but they will always be removed on the server.

That bit kinda bugs me.

link|improve this answer
1  
if it bugs you enough, submit patches: meta.stackoverflow.com/questions/1227/… – Jeff Atwood Jul 3 '09 at 1:17
3  
I seriously doubt my javascript skills are up to it, but give me a little time to clear some other things off my plate and I'm gonna give it try. Maybe check back in, say, 6-8 weeks ;) – Joel Coehoorn Jul 3 '09 at 1:30
5  
also, realize we are on V2 of the preview already. Remember when <table> tags used to show up in the preview? So we did a TON of work on this already, and now we're increasingly chasing corner cases. Diminishing returns. – Jeff Atwood Jul 3 '09 at 7:31
feedback

I'd like all the structured text elements to be allowed. Many of the other requests are for one or more of these tags. The ones that have been left out are:

  • <cite>
  • <dfn>
  • <samp>.
link|improve this answer
I'm not sure anyone knows what any of those are actually for... – SamB Feb 3 '11 at 23:44
1  
<cite> is used to delimit an author or reference a work (which is useful if you've got a "References" section, and if a work isn't available online). <dfn> is to mark a term when you define it. <samp> is for sample program output, which I find myself often needing on SO. More importantly, they are of a class with the other structured text elements. Allowing all of them makes as much sense as adding one. – outis Feb 4 '11 at 8:28
@outis According to the HTML5 spec., cite is to only be used for works, never for authors/people. – CyberSkull Sep 23 '11 at 22:32
feedback

I would really like the <% and %> ASP tags and the code between them to be actually executed.

<small>(might be a joke)</small>

link|improve this answer
1  
This was obviously to say I need small-tags sometimes. – WTP'-- Jan 7 '11 at 2:42
@time use <sub> or <sup> instead, it's quite similar – Jeff Atwood Jan 7 '11 at 5:25
9  
@Jeff I care about semantics of the web. – WTP'-- Jan 7 '11 at 11:34
3  
On some sites you might want to use both <sup> and <sub>. On most StackExchange sites, it looks good to use only <sub>. However, I experienced that on sites that use very stylish typographic fonts (like english.stackexchange.com), it looks strange if you use only <sup> or only <sub> on the same line as other text. I tried to use <sub><sup>both</sup></sub>, and that looked better (see the text I gave him +1 for that in this post – awe Jan 10 '11 at 12:52
@awe - That very stylish typographic font is just a Serif font. Most of the SE sites use a san-serif font. Math, Physics, TeX, Electronics Design, and other more academic sites use the serif font. – Kevin Vermeer May 9 '11 at 22:15
@reemrevnivek: You're right: It's not about using Serif instead of Sans Serif. The CSS used on English SE is extra raised when using <sup> and extra lowered using <sub>, which causes it to look strange if using only <sub> (aligned below baseline). Standard position for <sub> is just smaller, but aligned at the baseline with normal text. – awe May 10 '11 at 6:33
feedback

Allow to explicitly set the syntax highlighting language in <pre>?

link|improve this answer
5  
like with class="c" or class="css" ? – D_N Mar 5 '10 at 3:08
2  
I didn't know that :) – Nicolás Mar 6 '10 at 2:25
feedback

…we do not allow all HTML tags, as that would be an XSS paradise.

Please explain.

Isn't the final "S" for "scripting"?

Aside from <script>, <iframe>, <object>/<embed> and <a>, what tags allow scripting?

The onevent attributes are a concern, obviously, and form inputs should be avoided, but what's the risk for <abbr>, <dfn>, <q>, <samp> and <var>?

Whitelisting tags, when they are all well-known, seems provincial.

link|improve this answer
I didn't even know that those exist – genesis Aug 24 '11 at 22:16
2  
Part of the reason for that is that sites like this pretend they don't. – brianary Aug 25 '11 at 19:35
One good reason for not whitelisting everything that doesn't allow scripting, is that the site wants a uniform look, and will not allow anyone to post something that looks like it belongs on a totally different site. When it comes to formatting, you come very far with italics, bold and headings. You also have markdown for code, list and quote, and support for images and links. Anything more than that can potentially litter up the look of the page. – awe Feb 14 at 10:16
A vote for <q>! And a nice style on the inline quotation as well ofc. :] – Velmont Feb 25 at 10:05
feedback

How about the ability to enter HTML Unicode values - like 뷯뾽 -> &#EFBF; &#BDEF; &#BFBD; &#EFBF; ?

link|improve this answer
4  
well, many entities work, like &nbsp; and &hellip; – Jeff Atwood Oct 25 '09 at 21:33
The degrees entity (e.g. for Fahrenheit or Celcius) also work: &deg; – Peter Mortensen Jan 2 '10 at 18:14
Funny how they don't work in your own comments here. Are they actually broken, or were you showing how to type them? &hellip; &deg; (actually broken) – Nicolás Jan 4 '10 at 5:17
Comments are plain text, only questions and answers accept markdown / html. – rjmunro Jan 22 '10 at 16:07
Comments definitely accept some formatting. – Nicolás Mar 21 '10 at 17:41
3  
Comments accept Markdown only, <i>no HTML</i>. – Nyuszika7H Jan 14 '11 at 13:24
1  
Just enter them directly: 뷯뾽 – Mechanical snail Aug 4 '11 at 22:51
feedback

How about a <blockquote> "max width" attribute for allowing vertical scrolling?

link|improve this answer
feedback

I would like to be able to import colouring from Vim, but it at least needs support for color and bgcolor attributes (you will have to translate them to CSS, since both are deprecated and additionally bgcolor is allowed only for a limited subset of HTML tags).

PS: @D_N said that one may specify syntax highlighting language using class attribute of <pre> tag. Am I missing something or he was mistaking? <pre class="c"> results in removing <pre> tag.

link|improve this answer
I think @D_N just suggested it as one way of doing it, not that it was already implemented. – awe Feb 14 at 10:02
feedback

The 'definition list' elements are allowed:

<dd>
<dl>
<dt>

but I would really like better style for them.

See my question ():

link|improve this answer
feedback

Is the mailto syntax not supported for anchor tags?

I tried adding it to my profile but it's stripping it out.

link|improve this answer
1  
HTML in your profile is far more stripped/locked down. – random Oct 22 '09 at 15:25
@random Oh ok, I just wanted to make sure I wasn't doing something incorrect. – Joseph Oct 22 '09 at 15:34
feedback

I'd like a small subset of CSS style properties for use in the style attribute on all elements, or even *gasp* the color and bgcolor attributes. Also, <ins> should actually underline things. A favorite way of changing code is to put it in <pre><code> tags:

<a href="javascript:sayHello()#" onclick="sayHello(); return false">

and I would like to be able to underline or color the insertions when bolding and italicizing just won't do! After all, can you easily tell that the # has been inserted at a glance? No.

Note that I'm not suggesting that JavaScript be added, the above is just a code example. I wanted it to have angle brackets and things.

link|improve this answer
baaaaaaaaaaaaad idea. – Dan the Man Oct 14 '11 at 0:59
@DantheMan: Care to explain why? color, background-color, text-decoration, and text-transform are all harmless. – minitech Oct 14 '11 at 1:42
the javascript anchor would allow people to make viruses. – Dan the Man Oct 14 '11 at 16:13
@DantheMan: Oops, I guess that's easy to misunderstand. I used it as a formatting example - read carefully. I didn't suggest JavaScript be added, I was saying that strikethrough works but underlining doesn't, but you can't easily tell that the # was inserted without it. It's just a code example. Sorry. – minitech Oct 14 '11 at 17:43
This would be difficult to implement (one would have to filter out all of the CSS properties) and not worth the effort for what it accomplishes. (Also, the object of Markdown is to be legible without styling. Allowing attributes like those you suggest would break that.) -1 if I could. – squared Nov 12 '11 at 20:26
@squared: It's not that hard. And if there were syntax errors, instead of trying to fix them, the parser could throw the entire thing out. I agree with what you say about the Markdown, though (but some editor features here can be confusing too.) – minitech Nov 12 '11 at 20:28
1  
<ins> and <del> with a nice green and red background would cover that nicely. – Velmont Feb 25 at 10:07
feedback

You must log in to answer this question.

protected by Community Jul 31 '11 at 11:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged