Lightweight, plain-text markup language used across the entire Stack Exchange network for post formatting.

learn more… | top users | synonyms

-2
votes
1answer
59 views

Code Formatting in Two Consecutive Lines

What I see as an issue: A lot of times when I read and write code in StackOverflow I run into the following scenario: Here is some Code and words. This is more random wody stuff, some code ...
2
votes
0answers
17 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: ...
4
votes
0answers
38 views

Asterisks (wildcards) do not work within [tag:name] markup [duplicate]

Following on from Can we neaten the wildcard-favourited tag search result tag listing? I've noticed that the [tag:name] markup doesn't allow wildcards. Tags link to ...
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 ...
16
votes
0answers
118 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". ...
8
votes
0answers
111 views

Something funny happened here [duplicate]

http://stackoverflow.com/a/803323 Looks like the font of the code block overflowed! (FFx, Chrome. And in IE8 it's even weider)
8
votes
0answers
54 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.
11
votes
1answer
122 views

Marking up an asterisk with <kbd>

I've experienced a problem with <kbd> tag and the asterisk * on Stack Overflow. How to reproduce: <kbd>*</kbd> bug <kbd>*</kbd> which provides: bug ...
0
votes
0answers
34 views

Linkifying URLs containing __xyz__ is broken [duplicate]

When posting this link to the python docs I noticed the linkifying being somewhat broken: http://docs.python.org/2/library/__builtin__.html results in: ...
-4
votes
1answer
69 views

Add code blocks to alternate image text

I often find the need to post an image in an answer to help summarize my point. I have used these before to demonstrate things such as CSS properties, as shown in this answer. I added the code that ...
-2
votes
1answer
94 views

MathJax buggy on Stack Overflow [closed]

On Stack Overflow, it appears that MathJax has been enabled. I have two problems apparently caused by MathJax. If someone places backticks in a title, the title no longer displays correctly. See, ...
-10
votes
2answers
163 views

Turn off Markdown formatting

Markdown formatting makes easier to write good looking questions and answers, but sometimes people use ASCII art (like above) to create tables or other symbols to make their question/answer more ...
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 ...
0
votes
0answers
17 views

Markdown “add hyperlink” button seems to mess with code [duplicate]

While adding hyperlinks to this question, it was pointed out that the code block was being updated. You can see this when you look at the revision history. It seems to get confused when it tries to ...
15
votes
1answer
113 views

URLs are linked despite being inside a code span

Markdown source: `http://google.com` - `http://google.com` - `http://google.com` Rendered result: http://google.com http://google.com http://google.com Note that the third code span is ...
4
votes
1answer
177 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 ...
2
votes
1answer
102 views

Allow “title” attribute in allowed html <tags>

title is a Global HTML Attribute applicable to any HTML <tag> with the purpose of adding some 'extra information' to the contents of that tag. When used it's rendered as a tooltip with the ...
1
vote
1answer
48 views

Triple backquote for code snippets [duplicate]

I find the 4 space indentation to include code snippets unnecessarily difficult to use. Typically, when you copy and paste some code it requires manually reformatting each line (unless there's some ...
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 ...
1
vote
1answer
37 views

Formatting Returned Errors on Stack Overflow Questions

How should one format returned errors or console messages in a question on Stack Overflow? Recently I ran into a PHP question that had an error as a code block: PHP Warning: ...
8
votes
0answers
76 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 ...
24
votes
1answer
282 views

Are we still at the stage where we are unwilling to consider math markup on SO

The main Q&A on this (here's one, and another one, and of course this one all seem to be 3+ years old. I'd accept that this question is a duplicate of this question which seems to have ...
1
vote
1answer
41 views

How can I write nested code on a nested list with markdown? [duplicate]

I need to write a nested code block on a sub element of a list. My list look like 1. element 1 1. element 2 1. element 3, this has subelements 1. sub element 1 1. sub element 2 this one ...
10
votes
3answers
112 views

How to post comment with multiple spaces in it?

I know how to do that in question or answer post. But how do I write a comment post which contains multiple spaces? I want to write this in a comment: print ("string") I tried: Using ``, but ...
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 ...
7
votes
0answers
44 views

Bold/italics inside link uses too many *'s [duplicate]

Consider a post like this: It's called a [Horizontal Rule][1]... [1]: https://developer.mozilla.org/en-US/docs/HTML/Element/hr If I wanted to italicise the H and R, I'd change that to: It's ...
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 ...
6
votes
2answers
67 views

How do I include backtick ( ` ) characters inside of an inline code block on this site?

How do you write a backtick character inside of an inline code block? Given the following SQL which requires backtick characters: $sql="SELECT * FROM `my-table` LIMIT 1"; When I try to write it in ...
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 ...
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 ...
4
votes
1answer
56 views

Possible rendering bug for code in markdown

I was traveling stackoverflow, when I've encountered this question and at the very end of it: I thought ok, maybe somebody just forget to write return primes; }, but it appears it is written in ...
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 ... ...
1
vote
1answer
100 views

Is it possible to change the text size in the code markdown?

I recently answered my first question over on Programmers.SE and noticed that the font for my code snippets was smaller and looked a lot nicer than my snippets on SO. Is it possible to reduce the ...
1
vote
2answers
35 views

Comments formatting

I can't get the formatting to work in comments I have added ... Here is an example: Advice on most conventional method of parsing data from an input file What am I doing wrong?
2
votes
1answer
59 views

Italic not working when using underscore [duplicate]

See this post: http://stackoverflow.com/a/15223503/475125 The format being used: *note: file_get_contents required link.* Interestingly, this works fine: note: file required link. which makes it ...
2
votes
2answers
74 views

Allow single quotes in link when writing question or answer

When I write HTML tags, I tend to put things in single-quotes, i.e. class='foo'. When I go to make a link on here, <a href='http://foo.com'>foo</a> doesn't work, but <a ...
2
votes
2answers
72 views

How do I write a URL with internal formatting without having it auto-link?

This question answers how to write a URL in a comment without making it auto-link (using the '`' character). How do I write a URL with internal formatting (bold or italics or both) without having it ...
5
votes
2answers
93 views

Is there a better way than <br> to force a newline?

When I want to start a new line, I've always used <br>. I'm wondering if there's a better way, however, that only uses Markdown. I'm aware that if you insert two line breaks, leaving a blank ...
1
vote
1answer
42 views

Markdown shortcuts to common documentation sites (such as PHP)

When answering questions, I often times will explain how to use a specific function or set of functions in the answer. Every time, I will go out to PHP.net, find the actual page for the function, ...
2
votes
2answers
49 views

Comments don't highlight spaces in code over newlines

I recently noticed that comments don't highlight spaces over newlines in code blocks. For example, I posted a comment containing ", ".join(), and then, when displayed, it looked like this: As you ...
8
votes
1answer
124 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: * * * * * * * * * * * * * * * * * * * * * * * * * * * * ...
4
votes
1answer
95 views

Bug in Markdown rendering: images having underline character in the image description

Problem This code, ![“Are you coming to bed? —I can’t. This is important. —What? —Someone is _wrong_ on the Internet.”](http://i.stack.imgur.com/nXAfo.png) renders correctly in preview as an ...
1
vote
1answer
78 views

Markdown bug with code indentation when using Internet Explorer 8 and Compatibility mode

I went to edit a C++ question to fix the code formatting but noticed that the code seemed to already be properly formatted for markdown. The syntax highliting works but every line is starting at the ...
6
votes
3answers
96 views

How do I escape the hash sign (#) if I want to use it in the section title?

In this SO answer, I wanted to use the header Script component code in C# using the section title. However, the markdown syntax removed the hash sign (#) and it currently displays the text as Script ...
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" > ...
-5
votes
1answer
119 views

Paragraph length-limit

I see one-paragraph questions (normally asked by new users) around here all the time. To be clear, I'm not talking about one short paragraph like here. I'm talking about one huge paragraph that could ...
2
votes
2answers
177 views

What is difference between markup and markdown?

I am not sure what's the difference between markdown and markup? I read both these terms in several posts on meta. Googling it shows up some financial terms which is not the correct context for this. ...
1
vote
1answer
51 views

How to insert symbols in a post?

Reference post If you see the above post, you'll see these character that were used to describe the directory structure - ├──, └── And I see several other on similar lines in other posts. I would ...
40
votes
2answers
275 views

Add a button for adding code highlighting for a specific language

Currently, the following code: <!-- language: lang-php --> <?php="test"?> <!-- language: lang-xml --> <bug cat="md" name="syntax"> Generates the following ...
0
votes
1answer
36 views

Markdown doesn't highlight the code [duplicate]

Syntax highlighter works strangely in the current question. The weird thing is that in other questions the highlighting works fine. Firstly, I supposed the system haven't detected the language, but ...

1 2 3 4 5 13