Tagged Questions
4
votes
1answer
181 views
Is this intended (* in chats)
It is stated in the stackoverflow FAQ: http://chat.stackoverflow.com/faq#formatting
*italic* or _italic_
**bold** or __bold__
so when I type three * followed by a word followed by another three * I ...
14
votes
1answer
133 views
Blockquote rewrap destroys code
I've seen too many newbies hit the "quote" button instead of the "code" button while posting. This is much worse than if they just left the code inline, because the quote button rewraps all the text ...
2
votes
1answer
53 views
Is there a bug when using code highlighting with URL's? [duplicate]
I just recognized that when I use grave accents (`) to highlight code and insert a URL into this, then the URL does somehow not getting resolved. Using <code> works.
The output is something ...
-3
votes
1answer
40 views
Bug in submitting post with numeric ordering [duplicate]
Possible Duplicate:
Code block is not properly formatted when placed immediately after a list item
I tried the following post:
My application allows the user to take a picture in the ...
0
votes
1answer
115 views
Markdown silently renumbers my <ol> like enumeration-
When a paragraph starts with a decimal digit followed by a dot, the value of that number is silently renumbered to whatever markup believes it should be without any warnings. I would expect that the ...
-3
votes
1answer
483 views
Add link to windows 8 store app [duplicate]
Possible Duplicate:
Links with URIs of schemes other than http/https are broken
I can't add link to windows store app, since MS is using the ms-windows-store: protocol. For example this ...
0
votes
0answers
28 views
Trouble adding hyperlinks in the SO editor when they contain parenthases [duplicate]
Possible Duplicate:
Links to URLs containing parentheses
Notice that only the last link is functional.
Raw:
http://dbpedia.org/page/D_(programming_language)
^ SO's URI regex fails to ...
2
votes
2answers
128 views
<a> Links to URLS with square brackets in don't work
Creating an a href link to a URL which contains square brackets causes Stack Overflow to ignore the link. According to this post, there were similar problems in markdown, but I can't see this ...
9
votes
2answers
111 views
Quotes override list item numbers
Possible bug. Numbers after quote markdown get overridden
Example (edit to see the problem):
This is my first very important point
This is a very interesting point
This is my ...
0
votes
1answer
66 views
markdown can't handle tags with asterisks
On the main site, you can (for example) ignore tags using this notation [tag:foo*], which will ignore stuff tagged as foo but also foo-bar.
The nice markdown highlighter for tags seems to have a ...
1
vote
1answer
52 views
Unfiltered raw MarkDown shown in question summary
This question has a picture right at the start of it. This results in the raw Markdown being shown in the question summary (as illustrated). This Markdown needs to be filtered out.
Thinking that I ...
4
votes
2answers
80 views
Inconsistent/incorrect breaks/newlines in lists
When editing this answer, I noticed that placing breaks (blank lines) in lists (especially nested lists) is inconsistent (and possibly dependent on the current state of the JavaScript variables of the ...
-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 ...
1
vote
2answers
254 views
Markdown code snippets don't allow trailing spaces
I was answering a question on Stack Overflow and required to use a trailing space in one of my code snippets.
I formatted it like so:
`<a `
And it renders without the trailing space: <a
...
3
votes
0answers
57 views
Two spaces are needed to create a link after a tag reference [duplicate]
Possible Duplicate:
New “[tag:” syntax interferes with Markdown links
A [tag:foo] followed by a hyperlink breaks the world
For example, [tag:bug] [link][1] is formatted as ...
-3
votes
1answer
191 views
Markdown support for URLs without a protocol
If this does not classify as a bug (probably status-bydesign anyway), then I would like to present this as a feature-request for convenience when copy-pasting certain URLs.
The [Title](URL) ...
-17
votes
1answer
303 views
Cannot use line break or code in comments. Editing help gives wrong information
When you write a comment the following text appears:
Comments use mini-Markdown formatting: [link](http://example.com)
_italic_ **bold** `code`. The post author will always be notified
of your ...
2
votes
1answer
148 views
Using bold or italics in comments with single or double quotes does not work
I just tried to comment multiple times on "November 2011 Moderator Election: Town Hall Chat (scheduled)".
The intended comment was to be rendered as:
not "maderator nominations"
But instead, it ...
1
vote
3answers
83 views
Four space indented code cannot immediately succeed a numbered list in markdown [duplicate]
Possible Duplicate:
Code block is not properly formatted when placed immediately after a list item
The title says it all. Here is a reproduction:
An Item
A second item
// Note that there ...
0
votes
1answer
81 views
Bug in code dump rejector
The system rejects code dumps without context from low-rep users by comparing the ratio of context (non-code-formatted text) to code (text which is wrapped in <pre>). (See also this feature ...
0
votes
1answer
231 views
Spoiler markdown shows up as normal blockquote
In the question What was Dooku's plan for the Battle of Coruscant?, I used the >! syntax to create a spoiler section, but it shows up as a normal blockquote with a ! at its start.
6
votes
1answer
116 views
Funny nesting of links and bold
See original post here: What's the easiest way to get a random number from 0 to 9 in c#
If I nest the link brackets within the bold tag it doesn't render correctly.
**However, you should ...
4
votes
1answer
114 views
Markdown not correctly generating links
Reading through this page, and one of the articles prev/next links weren't linking. Went to fix it, but finally decided it was correct (or at least consistent with other working posts), so I assume it ...
4
votes
2answers
229 views
Adding hyperlink markdown after “[] ” renders the link incorrectly
The hyperlink markdown seems to break when you have "[] " immediately before link text. I noticed having spaces between the bracket groups doesn't effect the outcome. Maybe it should?
Source: byte[] ...
0
votes
1answer
109 views
Character formatting leaks into tag links
asdf
asdf asdf asdf
asdf asdf asdf
asdf asdf asdf
You can also do asdf, but that's probably okay to leave alone. It's mainly just the character styles (bold, italic, etc.) that I think could use ...
7
votes
1answer
249 views
Links with URIs of schemes other than http/https are broken
It seems like the engine completely breaks all links that use a URI with a scheme other than 'http' or 'https'. Web != Internet, guys! ;)
For example, the market scheme links to the Android market:
...
7
votes
2answers
414 views
New “[tag:” syntax interferes with Markdown links
Links in [link text][number] format don't work properly if they follow a tag using the new [tag:tagName] format. Here's the result of [tag:python] [gold badge page][1]:
python [gold badge page]1
...
23
votes
2answers
582 views
Markdown in chat fails for multi-line messages
We've come to rename Markdown to Letdown in the C++ chat room because it lets you down so often. I've now just found a pattern.
It seems markdown fails for multi-line messages. That is, this
...
2
votes
2answers
97 views
Tag Wiki Summary Does Not Allow Markup? [duplicate]
Possible Duplicate:
Markdown seems not to work in tag information excerpts
I tried the new tag wiki tonight on the ActiveSync tag. I added some hyperlinks yet when this formatting was ...
0
votes
2answers
85 views
Should be able to bold and italicise parts of words [duplicate]
Possible Duplicate:
WMD unable to render markup inside words
Just as the title says, why can't we italicize or bold parts of text?
For example, on SuperUser I tried to say this:
Took a ...
0
votes
2answers
339 views
Blockquote HTML in Markdown stops unordered lists from working
Though it's consistent between the preview and the rendered version in the post the <blockquote> HTML tag is inconsistent with the Markdown shorthand > prefix.
Here's a sample:
...
3
votes
2answers
269 views
Heading and HR markdown conflict with each other
In the markdown editing reference page it states that horizontal rules could be made using the following:
Insert a horizontal rule <hr/> by
putting three or more hyphens,
asterisks, or ...
2
votes
3answers
108 views
URL not rendering on StackOverflow
I've been having trouble with this lately. Can someone tell me what's wrong with my URL syntax in my answer to this question:
...
0
votes
1answer
163 views
URL from code.google.com is not markdown-parsable [duplicate]
Possible Duplicate:
Markdown rendering URLs with spaces
The following URL from Google Code does not seems to be parsable using the markdown Ajax widget used by Stack Overflow.
...
20
votes
4answers
859 views
Why should users have to press Return twice to insert new lines?
When I post a question and want to add a new line, I have to press Return two times, or else the next text will appear on the same line.
Is this really supposed to behave this way? If so, why?
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];
...
7
votes
2answers
602 views
Adjacent lists in WMD swallowed into a single list
Obviously, there not being a way to specify the end of a list, and multiple line breaks making list item contents paragraphs, the only way to have adjacent lists is to alternate between ordered and ...
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 ...
3
votes
2answers
115 views
Is this how Markdown should be rendering code inside a list?
I believe the following example needs no explanation.
What is going on here?
Why would you do this?
(function() {
// Do Stuff
})();
-2
votes
3answers
357 views
List Markdown doesn't work unless preceded by a blank line
In the Markdown reference, "Numbered lists are easy":
1. But they don't work for me,
2. ... unless there is a blank line before the first entry.
3. Is this a bug?
Answer summary:
The answer is ...
10
votes
2answers
554 views
Numbering/bullet interpretation bug?
The number to the left shows up as a "1." even though I typed in "364." Very annoying.
1
vote
2answers
149 views
Inline code breaks link text SO Markdown renderer
Reposted from this answer
The following markdown breaks:

It renders..
<b>Testing something" title="" />
...
0
votes
1answer
391 views
Bug In WMD Markdown Editor
To make a line break, you have to end a sentence with two spaces.
To make a paragraph, you create a whole line between two blocks to text.
But when you create a line break, it doesn't end the ...
9
votes
2answers
239 views
Multiple spaces in code in comments get merged into one
Code is supposed to be exact and "as-is". Sometimes, showing two spaces is important. In a comment, it is not possible to show code with multiple spaces. This became apparent in this answer (see ...
2
votes
1answer
72 views
Markdown in Careers Experience Responsibilities does not render
In my CV on careers I have this entry in my first experience responsibilities field:
Project management and development of
framework for model driven development
in Delphi. Look for Atlas 2 ...
3
votes
3answers
893 views
Problems creating a bullet and number list with markdown
I'm struggling to format a bullet list, a number list and then a bullet list.
This question isn't looking right:
...
2
votes
2answers
72 views
Optional title for Ctrl+L (hyperlink) shortcut is broken
When using Ctrl+L to create a link, the prompt says:
Insert Hyperlink
http://example.com/ "optional title"
If you actually enter enter something with a title, though, it thinks the ...
0
votes
2answers
39 views
Link parsing error, preview is fine
In this answer, the second link is not properly displayed, but the edit page with the preview works as expected.
Displayed answer
Edit screen + preview
0
votes
3answers
158 views
Adding image links seems to randomly not work?
I asked Making the YUI TestLogger show only tests that fail? on Stack Overflow, and added an image from my Blogspot account. When I edit the question I can see the image, but in the final question the ...
3
votes
1answer
132 views
List entry followed by code block messes up the code section
Here's two examples (note that in first example, backticks also had no effect, for some reason):
include/db.php:
try {
$attribs =
array(
PDO::ATTR_PERSISTENT ...

