Lightweight, plain-text markup language used across the entire Stack Exchange network for post formatting.
10
votes
1answer
333 views
Markdown quirkiness with hyperlinks including images
I noticed some weird behavior of Markdown regarding adding hyperlinks to images.
Start with an image:
![alt text][1]
[1]: http://example.com/image.jpg
Now, highlight ![alt text][1] and hit ...
4
votes
1answer
141 views
Markdown sometimes repeats words at the end of a line
Have a look here, in the third paragraph.
Also have a look in the edit history of this answer, in the first revision. Notice that the duplication happens there also, in the last paragraph. Before ...
31
votes
0answers
82 views
Make “x identical lines skipped” expandable
Recently, I saw this revision:
I'm using the side-by-side markdown layout to see revisions. Now, I wanted to see the rest of the code to see what impact this revision had. So I think, let's click ...
16
votes
0answers
121 views
Has MarkdownSharp considered East Asian Scripts always have intra-word emphasis?
In the post below, Jeff Atwood claimed the MarkdownSharp has changed Markdown rules to disable intra-word emphasis like "the_file_name" or "file_one and file_two".
...
16
votes
0answers
106 views
Adding a new link to a post messes up the code already present in the post
In an answer, I was adding some links to the documentation, after I wrote some PHP code. As result, the code was altered.
Take as example the following code.
if (isset($item['load_functions'][1]) ...
14
votes
0answers
104 views
Add “paragraphs” to Markdown help
Like balpha once explained very nicely, a <br> line break (newline) should be used
in very little cases, and surely is not the same as a new <p> paragraph. Still the Markdown help only ...
13
votes
0answers
119 views
Can the code button in the format bar be made to work for code blocks in numbered lists
I ran into a problem formatting a code block in a numbered list. I notice that I am not the first one to run into this problem -- there are more than a dozen questions related to this topic.
The ...
11
votes
0answers
77 views
Link Shortcut for Wikipedia
Since this is the Summer of Love, in helping the newbies out I find myself linking to Wikipedia quite often (as they're usually woefully lacking in basic understandings of the topics they're asking ...
10
votes
0answers
93 views
Inconsistent parsing of Markdown wrt italics and punctuation in posts and comments
On Language and Usage sites, proper punctuation is sometimes important. Consider the following source:
“*bla*”, *bla*! *bla*… (*bla*), [*bla*], *bla*/*bla* and |*bla*|!
In question and answer ...
10
votes
0answers
59 views
Revision diff columns overflowing
I was editing a post, and I formatted the code better (markdown hates code with tab characters in it). When I was viewing the revisions (in source side-by-side diff mode), some of the lines were ...
10
votes
0answers
78 views
Should shorthand tag links link to questions or wiki?
The editing help explains that one can link to tags with shorthand links such as [tag:foo].
Currently such shorthand links to the relevant tag's questions page. In many contexts, one wishes to ...
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.
8
votes
0answers
55 views
Formatting in chat room description
Can Markdown formatting be added to chat descriptions?
Sometimes bold text would be nice, to highlight something in the description.
8
votes
0answers
78 views
Markdown in careers.stackoverflow.com cover letters
One of the things I love about the Stack Exchange sites is how pervasive Markdown is. You can literally use it almost everywhere. Heck, I'm using it right now, as I type this.
So, you can imagine my ...
8
votes
0answers
89 views
Interlinear glossing and small caps for sites like Russian Language and Usage
It is a common notational convention in linguistics to use small capitals in interlinear glossing. Using good ol' plain capitals for that is almost like not using the [code][/code] tag for code ...
7
votes
0answers
43 views
Markdown-Quotes inside HTML are breaking the output
This post appears totally messed up for me. It uses many blockquotes, that apparently lead to the link beeing spread all over the post-text, including the flag, edit, link and answered/edited at URLs:
...
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
...
7
votes
0answers
95 views
<del> without <ins>?
Markdown accepts the <del> tag, which is very convenient if you want to remove a word, sentence, or paragraph but want to do this in a non-confusing manner. But many times you want to replace a ...
6
votes
0answers
107 views
Please include how to quote backticks in inline code in Markdown editing help
I've seen this happen a few times: "code 'with' backticks (replace quotes with backticks!!!)"
I also had to do some digging to find out for myself that the correct way to do this: code `with` ...
6
votes
0answers
126 views
Defining a term with markdown or HTML
I've come across answers on Stack Overflow that I've found particularly intriguing, but half way through reading I've had to break off and perform a Google search to find out what a particular term or ...
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
0answers
113 views
Bug in character counting code
I notice a bug in adding a recent comment related to this answer, that the silly SᴛᴀᴄᴋOᴠᴇʀꜰʟᴏᴡ couldn’t couldn’t count characters correctly. It is counting separate UTF‑16 code units, which are not ...
5
votes
0answers
153 views
Make multi-line code indent work with sloppy selections in the editor
This is only a minor annoyance, but one at least I often run into.
Would it be possible to make the "indent code" button (or Ctrl+K) always indent entire lines when there's a multi-line selection? It ...
4
votes
0answers
91 views
Ordered lists with letters as markers
From time to time, I encounter posts that use nested lists, where one of the lists uses numbers (1., 2., 3.) as markers and the other uses letters (a), b), c)), but are not properly formatted ...
4
votes
0answers
93 views
Automatic link creation fails with backslash at the end of the title (and other characters)
This is a very minor bug, but I still think it is important to point it out (maybe it was already).
I voted another question to be closed as duplicate of php preg_replace \
Since the title ends with ...
4
votes
0answers
64 views
Chat Feature Request: Ability to use Markdown in “About Me”
Can we have the ability to use Markdown in the "About" section of our Chat Profile?
4
votes
0answers
218 views
Hyperlink title text in comments expand markdown formatting shortcuts
Comments support a limitted form of hyperlinks in the [text](url "title") format. However, when you fill out the title attribute and decide to include something like * for emphasis, it breaks down if ...
3
votes
0answers
33 views
Bug in markdown rendering when only diffs are whitespace
This suggested edit diff looks very wrong when showing the markdown. The rendered output diff is fine, though. It almost seems as though it has prioritsed matching one part of the text including the ...
3
votes
0answers
38 views
Metavariables in code markdown
Often when providing code snippets in answers, you want to mark some parts of the code as placeholder metavariables; this is commonly rendered in italics. For instance, in my answer to this question ...
3
votes
0answers
49 views
Careers table support inconsistent between preview and actual rendering
I just edited my careers page, and I added a table in markdown. I know markdown is only partially supported and I kind of expected it not to work, but the preview rendered it exactly like I wanted, ...
3
votes
0answers
53 views
Backticks in readable markdown links should be stripped
I am frequently using readable links, e.g.:
[James Gosling], working at [Sun] by that time, written the [`URL`] class.
[James Gosling]: http://en.wikipedia.org/wiki/James_Gosling
[sun]: ...
3
votes
0answers
62 views
Paragraphs breaks are ignored inside spoilers
Paragraph breaks are interpreted inside block quotes:
> Foo
>
> Bar
Foo
Bar
...but they aren't interpreted inside spoilers:
>! Foo
>!
>! Bar
I've tagged this as a ...
3
votes
0answers
79 views
Allow [tag:tag-name] syntax to link to any site
The tag tag and meta-tag bug syntax generate much nicer looking results than merely surrounding your tag with [square brackets].
However, they only work when you're talking about the site you're ...
3
votes
0answers
72 views
Possible duplicate header misformats question titles containing double underscores
This question was recently closed as a duplicate of Python (and Python C API):__new__ vs __init__. Both my link here and the Possible duplicate header have the same problem - they interpret the ...
3
votes
0answers
118 views
HTML in answers/questions
Every now and then, I edit another user's question or answer and encounter something along the lines of the following in the post source:
Help, I need this question solved with these things:<br ...
2
votes
0answers
18 views
Web archive link redirects to StackOverflow host (resulting in error page)
Problem:
Some links will redirect you to a StackOverflow error site even though they're correct (as in DOM/HTML representation).
Test cases:
Link in question body here: ...
2
votes
0answers
63 views
How to include quoted text in-line?
I understand that > can be used to create blocks of quoted text, but is there a way to format a small quoted phrase within a paragraph of my answer, like the backtick does for code formatting?
If ...
2
votes
0answers
98 views
In the WMD preview, newline before closing </pre> might break preview in other parts of same post
This is the same effect as in Newline before closing </pre> might break formatting in other parts of same post. However, that Markdown bug made both the preview and the final results be rendered ...
1
vote
0answers
18 views
tag:* links incorrectly when using Save And Copy Profile To All Stack Exchange Accounts
The css tag in my Stack Exchange profile links to different sites depending on where it's being viewed:
Profile on StackOverflow:
[tag:CSS] => http://stackoverflow.com/questions/tagged/css
...
1
vote
0answers
51 views
Markdown editor does not handle code correctly in lists
Note that this is not complaining about the fact that 8 spaces are needed for code in lists. It is complaining that the editor doesn't seem to respect this.
As Markdown specifies, 8 spaces are needed ...
1
vote
0answers
109 views
Best practices for denoting keyboard shortcuts
(Well, there actually is a Q on this topic with a [faq] tag. But I don't see any consensus there so I'm trying to open a [discussion] in attempt to make one so that someone can possibly post it ...
1
vote
0answers
59 views
Why doesn't CTRL+K work around list/code conflicts?
Ordered List and Code Formatting Conflict contains a nice workaround for code/list conflicts. Why doesn't CTRL+K always inject a hidden HTML comment just in case this conflicts occurs?
UPDATE: I ...
1
vote
0answers
113 views
Markdown editor bug for inline code links
I think there is a bug with the editor.
Create a inline codeblock with the back ticks.
SomeClassName
Double click the single word which highlights SomeClassName.
Click add a link and save it. ...
0
votes
0answers
25 views
Adding an image removes number-only links
How to reproduce (tested on StackOverflow and SuperUser):
Click "Ask question"
Enter text containing one or more numbered links, e.g.
StackExchange-based websites ([1], [2]) are great, because ...
...
0
votes
0answers
65 views
Information about Stack Exchange sanitizer for Markdown (XSS)
How does Stack Exchange sanitize the user's text to prevent XSS injections?
I've seen that if I write: (this is the doc about this bug)
> hello <a name="n"
> ...
0
votes
0answers
61 views
Implementing some form of templating mechanism
In JavaScript answers using ES5 features: Warn or not?, user GGG commented:
It would be great if SO had wiki-like templates for things like this, so you could just do {{ES5}} and be done with it.
...
-1
votes
0answers
46 views
Markdown magic-links addition
Would it be useful to have magic-link [OP] in markdown, it could have original posters account/name/specific picture.
Also not sure how'd it be implemented, but magic-link pointing to specific answer ...

