-2
votes
0answers
65 views

Horizontal divider not rendered by — [closed]

For some reason, the second horizontal separator (before "To count arguments…") isn't getting rendered in my question Can macros be overloaded by number of arguments? I can't reproduce the bug ...
2
votes
2answers
30 views

Code block display within an ordered list? [duplicate]

I was attempting to edit a post earlier, but couldn't get a code block to display within an ordered list. I've not found any reference to this directly and despite indenting and trying a few ...
1
vote
1answer
44 views

Link in answer editor appears correctly in preview, but not in the answer

Note: I know about the other bug marked duplicate, but this one is different. I was about to edit an answer to fix url syntax, but noticed that it was correct. Preview thinks it is correct, but ...
0
votes
1answer
43 views

How do I render a backtick enclosed in <kbd> tags?

The following line of Markdown isn't rendered the way I expect: Press the <kbd>`</kbd> key then type ``foo bar baz``. The actual HTML being rendered omits the <kbd> tags: Press ...
0
votes
1answer
45 views

Italics markup is not working on Stack Overflow [duplicate]

Possible Duplicate: Bolding words that include an underscore doesn’t work How can I italicize text that contain underscores? In one of my Stack Overflow questions, *ParentReference ...
2
votes
0answers
48 views

Badge formatting [duplicate]

Possible Duplicate: Add badges to Markdown? Is is possible to display badges with markup similar to the tag formatting? legendary - [ tag : Legendary ] So something like ...
0
votes
1answer
167 views

How to escape the angled brackets (“<”, “>”) in a code block?

Writing a question including a C code in a <pre><code> block, I found out that in my #include lines the header names are not displayed when using the standard <name.h> convention. ...
3
votes
2answers
68 views

Problem with numbered lists [duplicate]

Possible Duplicate: Code block is not properly formatted when placed immediately after a list item In my answer here, I wrote up a solution with step-by-step instructions. However, my ...
3
votes
2answers
107 views

Markdown highlights JavaScript comments incorrectly

The comments above and below jquery(document)... are rendered incorrectly. Here's a screenshot of the original page:
11
votes
3answers
907 views

Attempting to space out multi-level lists causes mis-alignment of child elements

Say I'm entering a list, like so: * Item 1 * SubItem 1a * SubItem 1b * Item 2 * SubItem 2a * SubItem 2b As you'd expect, this results in: Item 1 SubItem 1a SubItem 1b Item 2 SubItem 2a ...
23
votes
2answers
4k views

How do I escape a backtick in Markdown?

How do I escape a back tick within a code block? This is probably a duplicate, since I'm sure it's a common concern, but I can't find a question that addresses this specifically. How do I write ...
3
votes
1answer
86 views

PHP version of the markup used for the stackexchange?

Is there a php version of the markup used for the stackexchange, more info on the mark up at Stackoverflow's Markup.
2
votes
2answers
110 views

Nested <pre> blocks appearing in a question

Here's a problem (at least it seems like a problem) I noticed in the first couple revisions of this question. Based on experiments shown below, when I include within a <pre> block lines that ...
3
votes
2answers
167 views

Markdown rendering URLs with spaces

Consider the following text <code>[Collections#sort][1]</code> [1]: http://java.sun.com/j2se/1.4.2/docs/api/java/util/Collections.html#sort(java.util.List, java.util.Comparator) It ...