I like how tags are cleverly displayed in gray boxes in this question, among others: http://meta.stackoverflow.com/questions/6119/retag-request-opensource-open-source

What's the markdown syntax for this?

link|improve this question

50% accept rate
feedback

3 Answers

up vote 4 down vote accepted

That would be the <kbd> tag:

<kbd>hello, world</kbd>

becomes

hello, world

It's used mainly to demonstrate keys that the reader is supposed to press, like ctrl+t, etc.

Though <kbd> is an HTML tag, StackOverflow applies some CSS to make it look like a real button:

kbd {
  background:#EEEEEE none repeat scroll 0 0;
  border-color:#CCCCCC #AAAAAA #888888 #BBBBBB;
  border-style:solid;
  border-width:1px 3px 3px 1px;
  color:#000000;
  padding:2px 4px;
  white-space:nowrap;
}
link|improve this answer
Ah, thanks. So this is just standard HTML, not markdown? Any special CSS required to format it like the real tag rectangles? – Andrew Jul 21 '09 at 3:44
Yes, and I've updated my answer to include it – Kyle Cronin Jul 21 '09 at 3:58
Coolness . – Andrew Jul 21 '09 at 4:17
This should be added to the "Formatting reference" – TM. Jul 27 '09 at 6:16
feedback

Note that, if talking about actual tags, it's better to use the new [meta-tag:tags] -> syntax; see Is there some markup to post tags? or the formatting help for details.

link|improve this answer
feedback

You must log in to answer this question.

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