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 ...
12
votes
1answer
63 views

Link text over 70 characters fail to render in comments

I was trying to make a comment like this When you are banned from asking questions then you should read [what-can-i-do-when-getting-sorry-we-are-no-longer-accepting-questions-answers] ...
3
votes
1answer
52 views

If I write [edit] inside a comment, it creates a link to edit the question, why?

In this answer, I posted a comment (the 4th one in the comments list). I then made an edit, but I wanted to make sure that people see that there is an edit, so I wrote at the end of my comment [edit] ...
7
votes
1answer
40 views

Links in comments are broken on the new “about” page

It looks like the [text](url) link markup is not parsed (correctly) in comments shown on the fancy new "about" page. As pictures speak more than a thousand words, here's a screenshot from ...
1
vote
0answers
29 views

Wrong bracket parsing for comment citations that are also links

[[recursion](http://meta.stackoverflow.com/questions/84379/wrong-bracket-parsing-for-comment-citations-that-are-also-links)] is rendered correctly in a question: [recursion], but in the comment below ...
6
votes
1answer
680 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
0answers
73 views

Links in comments have problems when adjacent to punctuation [duplicate]

Possible Duplicate: Comment links fail when next to non-whitespace I was trying to add a link to a comment here, using the [link title](link URL) format, but it seems to be broken next to ...
5
votes
1answer
141 views

Italics markup not working in comments

If I enter the following mark-down source: “*blah*” into a question or answer, then it works, but in a comment it doesn’t. The asterisks remain literal and don’t turn into italics.
8
votes
4answers
213 views

Comment links fail when next to non-whitespace

Parens, outside Input: ([text](http://example.com) Result: ([text](example.com) Expected: (text Brackets, inside Input: [[text]](http://example.com) Result: [[text]](example.com) Expected: [text] ...