1
vote
0answers
42 views

Markdown bug in comments with ` ` [duplicate]

I just tried to write this comment: You could use $arr = explode(' ', $str); to split $str by . Then you could do the same on = to get your key->value pairs. But it chokes on and formats like ...
2
votes
2answers
27 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 ...
7
votes
0answers
87 views

Markdown parser does not recognise all valid URL paths

Hyperlinks which contain any of the dollar symbol $, the asterisk symbol * or the apostrophe/single-quote symbol ' cause various things to break: http://foo.com/$bar produces http://foo.com/$bar1 ...
8
votes
1answer
123 views

Mangled Markdown leads to unclosed italics in Chrome

A question was posted on Stack Overflow with this Markdown source: Write a program to print the following pattern: * * * * * * * * * * * * * * * * * * * * * * * * * * * * ...
2
votes
0answers
46 views

Italicisation does not work with trailing period in chat [duplicate]

Possible Duplicate: Markdown in chat fails for multi-line messages When I write _adj._ on a StackExchange post proper it gets italicised: adj. When I do the same in chat, in a multi-line ...
2
votes
1answer
35 views

<b> within <pre> not visible on mobile and windows; although fonts are present

Within <pre>, the tag <b> is visually ignored on the mobile version and on some Window-versions. For reproduction read this answer. It contains many annotated programs (failure-slice). ...
0
votes
1answer
42 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 ...
5
votes
0answers
45 views

Adding links to Google webfont sites is broken

this link is broken when adding it through clicking Hyperlink icon in the edit form. If I instead paste the link directly as is, then it's working fine, like this: ...
5
votes
1answer
79 views

Italics and parentheses or brackets

I'm trying to make symbols italic, both in front and inside a bracket. So I wrote *foo*[*bar* + 1]. The system renders this as “foo[*bar* + 1]”, which at the time of this writing means ...
5
votes
1answer
77 views

Blockquotes in a list break blockquotes after the list

I noticed an answer over on The Workplace that had a blank blockquote at the bottom of it. When I went to edit, I saw that there was nothing after the end of the text to cause it. And the actual ...
0
votes
1answer
162 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. ...
5
votes
0answers
31 views

Include footnote notation in Markdown engine [duplicate]

Possible Duplicate: Markdown footnotes? The wonderful pandoc version of Markdown allows using footnotes via the [^1] or [^jama] notation. Footnotes can then be inserted at the end of the ...
4
votes
2answers
182 views

Which type of markdown is Stack Overflow using? [duplicate]

Possible Duplicate: Which tools and technologies build the Stack Exchange Network? Precisely which type of markdown (afaik there are quite a few variants) and editor (the one I am typing in ...
-1
votes
1answer
293 views

Markdown syntax for `<kbd>foo</kbd>`

Especially on websites like Ask Different, <kbd>foo</kbd> is used a lot to markup keys on a keyboard correctly. It would be super useful to have a simple Markdown syntax for it. There’s ...
3
votes
1answer
135 views

Markdown not appropriately rendering unordered list spoilers

A user in http://scifi.stackexchange.com/a/14928/1913 discovered that he couldn't create a spoiler unordered list, and I can't seem to either. I can blockquote an unordered list without any real ...
91
votes
4answers
3k views

Implement ```-style Markdown code blocks

Currently, Stack Exchange’s Markdown parser only allows four-space indents to represent code blocks: // some code // another line of code GitHub Flavored Markdown and other Markdown implementations ...
-6
votes
1answer
131 views

Can't Seem to comment out a link

When testing out The HTML comment Length hack and I was trying to make the Duplicate Link message a comment itself I came across this curious predicament: This is the markup: <!-- **Possible ...
0
votes
0answers
59 views

Markdown code block parsing fails after lists [duplicate]

Possible Duplicate: Code block is not properly formatted when placed immediately after a list item Code block parsing fails after lists: A B Contents List of Figures iii List of ...
1
vote
0answers
43 views

Creating link to search query on StackOverflow in Markdown editor is incorrect [duplicate]

Possible Duplicate: Hyperlink button breaks some URLs when automatically undoing URL encoding I am running across this issue trying to post the following links in this question. Basically, ...
7
votes
2answers
86 views

A [tag:foo] followed by a hyperlink breaks the world [duplicate]

Possible Duplicate: New “[tag:” syntax interferes with Markdown links [tag:foo] [a hyperlink][1] Results in; foo [a hyperlink]1 Doh
1
vote
1answer
573 views

Inline code markdown is handled differently in questions/answers and comments

In questions/answers, to put backticks within my inline code I have to enclose the whole thing in double backticks. ``cd `brew --prefix` `` In comments I can escape backticks with backslashes. I ...
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:
4
votes
3answers
484 views

Cannot escape square closing bracket in inlined code in comment links

Fundamentally, I want to create this link in a comment and have it go to the right place: String(byte[],Charset) source: ...
2
votes
1answer
307 views

Colons in hashtag portion of URL are improperly encoded

According to this answer: We now encode any colons at position 7 or greater, which are not followed by 2 or more numbers. Unfortunately this breaks links to URLs such as this one: ...
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 ...
6
votes
1answer
681 views

Why is mini-markdown working in some of my comments, but broken in others?

I just noticed today that the mini-markdown on some (though strangely not all) of my comments is broken. I know for a fact that when I left them, everything was rendered just fine. In particular, I've ...
3
votes
2answers
202 views

comment doesn't support multiple backticks code span

Quote from markdown syntax: To include a literal backtick character within a code span, you can use multiple backticks as the opening and closing delimiters: ``There is a literal backtick (`) ...
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.
3
votes
1answer
325 views

Unbalanced blank lines after inline HTML comments might break formatting

Not a big issue as this won't happen often, if ever again. (But it just scared me a lot when I messed up the Recent feature changes to Stack Exchange with this revision.) The following does not ...
1
vote
0answers
52 views

Links in answer editor appear correctly in preview, but not in the answer [duplicate]

Possible Duplicate: Hyperlink is shown incorrectly in SO post I my answer I attempt to link to a page in the Oracle Java documentation. The URL of the link is: ...
1
vote
1answer
641 views

Problem with <pre> in markdown

Have a look at this question: http://stackapps.com/questions/1181/ Now hit edit and look at the preview. Doesn't match, does it? Edit: Yes, I am aware that I didn't close the <pre> tag. Repro ...
1
vote
0answers
58 views

Markdown formatting bug, code-tag not closed [duplicate]

Possible Duplicate: The case of the bleeding monospace font! See this answer: http://stackoverflow.com/questions/1042902/most-elegant-way-to-generate-prime-numbers/1072205#1072205 Somehow ...
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 ...
1
vote
1answer
319 views

Markdown <del> is a little buggy - works nice on preview, not so much when it's done

If you need a reference, this is where I got to notice the issue. I'm not sure this should be posted as a new question, and I understand the preview not matching the post is a very well known issue, ...
0
votes
3answers
126 views

Example of broken MarkDown on Stackoverflow

Look in the CODE text for the answer by yonel: NSArray paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString documentsDirectory = [paths objectAtIndex:0]; ...
10
votes
0answers
118 views

Could <samp> support be added to stackoverflow?

Since stackoverflow already supports <kbd> for text input, it only makes sense to support the matching output from a program, <samp>, distinctly from the program <code> itself.
3
votes
2answers
152 views

Post preview breaks URLs with square brackets

The markdown editor breaks URLs that have a [] in them in the post preview. For example: Test link the URL is: http://www.example.com?array[]=item1 it works fine in the final result, though, so ...