Tagged Questions

Markdown is a lightweight markup language used across the entire Stack Exchange network for post formatting. The language takes many cues from existing conventions for marking up plain text in email; it is designed for maximum readability and "publishability" of both its input and output forms. ...

learn more… | top users | synonyms

0
votes
1answer
53 views

List of languages for syntax highlight

When putting some code sections into SO questions, the system tries to detect the language and automagically colorizes the code but sometimes if the excerpt of code is small enough it cannot get the ...
4
votes
2answers
69 views

Which type of markdown is Stack Overflow using?

Precisely which type of markdown (afaik there are quite a few variants) and editor (the one I am typing in right now) is Stack Overflow using? I understand, there must be a JavaScript realtime ...
5
votes
2answers
41 views

Italic text next to normal text with no spaces in between [closed]

Possible Duplicate: WMD unable to render markup inside words Is it possible to have an italic character next to some non-italic text so that there's no spaces in between? For example, I ...
-4
votes
1answer
68 views

Typographic goodies (correct dashes, quotes etc.) and Markdown

Is SOFU planning to implement some more typographic goodies? I mean, Markdown is wonderful, but Markdown with SmartyPants sounds like awesomeness itself: SmartyPants can perform the following ...
2
votes
0answers
72 views

Answer truncated, user info formatted as code [closed]

The answer got cut off, the user information looks different and some HTML tags seem to be in a wrong position. See this answer in Most efficient way to increment a Map value in Java: The part at ...
2
votes
1answer
45 views

Unable to force Python syntax-highlighting

I have asked a question related to web2py—an open-source Python web-framework—that includes a code snippet. Unfortunately it didn't syntax highlight by default, so—following the docs—I added the ...
18
votes
0answers
107 views

Can the Apple.SE magic comment link's title be changed to “Ask Different”?

Those magic comment links are awesome, especially when commenting on reasonably good but off-topic questions. Due to the tags I hang out in, I use the [Apple.SE] link more often than most others. Its ...
-6
votes
1answer
91 views

Comment markdown seen unescaped by symbolhound? [closed]

If I do a symbolhound search for Could you give an example of what you _, I get a match with Regular expressions in Ruby included. Where is the mistake or what do I have to change to get the correct ...
5
votes
1answer
41 views

Markdown, how can I set the language highlighting display in Stack Overflow to ruby?

How do I set the language being highlighted in Stack Overflow to be colored and formatted for ruby? I've seen this somewhere but can't find it now. Something like a one line option at the top of a ...
3
votes
1answer
84 views

Why is the following Markdown not correctly formatted?

I was editing a question to include the excerpt of what reported in the linked sites. I used the following Markdown, but it's not rendered how I would expect. - [How Valentine's Day Works][1] > ...
3
votes
2answers
41 views

Markdown bug with Lisp-y code

I can't see quite what causes this, but there's a funky markdown bug apparent in my answer here: http://stackoverflow.com/a/10324330/659804 The two Lisp-y code snippets should be formatted just the ...
-2
votes
1answer
130 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 ...
-5
votes
1answer
128 views

Why does code sample just so … three dots? [closed]

Possible Duplicate: How do I format my code blocks? I've added a code sample to SO, which consists of just divs. I highlight the code area using the toolbar button. It is showing up as ...
-1
votes
1answer
59 views

underlining with `<u>` does not work in `<pre>` [closed]

Possible Duplicate: What HTML tags are allowed on Stack Exchange sites? Within the <pre>-environment the tag <u> has no visible effect (Firefox 7.0.1 but also earlier like ...
3
votes
1answer
62 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 ...
4
votes
1answer
80 views

Are the StackExchange pagedown/wmd help interfaces open-sourced anywhere?

I have the editor up and running as per Where's the WMD editor open source project? But are the StackExchange pagedown/wmd help interfaces, i.e. the tabular help content and bouncing of the ...
-3
votes
1answer
40 views

What is in the edit box is not the same as what is being shown in the browser [closed]

Possible Duplicate: How do I format my code blocks? I am trying to answer a question that I asked. The HTML output of the code block does not match what I have type in. How do I fix this? ...
3
votes
1answer
74 views

Various blockquote issues

I've encountered what may be a bug or few. It seems that blockquotes can't become less-nested, at least not easily. Take the following: one deep two deep three deep ...
0
votes
2answers
61 views

Why are links not working when I have a decent reputation?

I have posted a second answer to Where can I find a working example of how to remotely invoke an OSGi service contained within Eclipse Virgo?, but the links are not formatting properly. I have a ...
5
votes
1answer
55 views

The editing help contains a non-working example for putting blockquotes into lists

Below is the text from Stack Overflow's editing help. As you see 4th item from editing help is renedered as 1 so it looks like a bug. If it's not a bug what is the way of putting blockquote into list ...
4
votes
0answers
60 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 ...
3
votes
1answer
87 views

Can markdown mini replace an en dash with a normal hyphen in URLs?

Further to Tim Stone's response to my bug report regarding what turned out to be an en dash in an URL: Would it be reasonable for markdown mini to replace en dashes with normal hyphens? Or is that ...
1
vote
0answers
35 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 ...
-3
votes
2answers
125 views

Markdown does not allow for bold italic, then bold, then bold italic

I am trying in one of my posts to do this: ***how many*** **and** ***where*** Which for some reason comes out like this: Why is that happening? Shouldn't the middle word be bold? Is this ...
15
votes
1answer
175 views

Why do code blocks sometimes not “show” properly?

It's possible that this is a duplicate of this question - but if so, I don't know why, and I can't verify whether it's the case. I've got a concrete example, although only dev (and maybe mods) will be ...
5
votes
2answers
223 views

Indenting markdown with non-regular unicode spaces does not create a correct code block

The following illustrates a markdown bug: Proc := MyProc2;     Proc();//calls MyProc2 Editor screen shot:
0
votes
1answer
74 views

Can I use inline code formatting in question titles?

I know in the question's body, we can use `code` to specify inline code like this. But can we specify code in the title of the question? And if not, why?
33
votes
1answer
261 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 ...
4
votes
0answers
39 views

Header is not bold in edit preview

See edit here: http://scifi.stackexchange.com/posts/12229/edit Then see the final result: The ultimate question What is going on here?
2
votes
2answers
65 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
113 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
107 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 ...
1
vote
0answers
35 views

Bug (or feature-request) when attempting to use bold text in URLs [closed]

Possible Duplicate: WMD unable to render markup inside words I was writing an answer, and in that answer I was trying to highlight some text in this URL by making it bold. Here's how it ...
2
votes
1answer
64 views

Double return within <sub> breaks markdown

On Cognitive Science we expect answers to include a full list of references on which the answer was based at the bottom of the question. There are a few ways in which to format this list and we ...
3
votes
1answer
133 views

Why can't Stack Overflow properly render a backward slash? [closed]

Possible Duplicate: Chat doesn't pass escaped parentheses and brackets literally If I type it in between these parentheses -> () the backward slash inside the parentheses is removed. ...
0
votes
2answers
67 views

What are text format magics in SO?

There are some text formats which help us to provide more readable answers,comments,questions but I learned them by Editing other answers, I don't know where is the source, for example: code style ...
9
votes
1answer
117 views

URL with dashes and underscores altered when inserted into [name](url) notation

So, this is the URL: http://code.google.com/p/es-lab/wiki/Talks#Changes_to_ECMAScript,_Part_2:_Harmony_Highlights_-_proxies_and When I insert the URL like so: [Title](URL) the last part of the ...
5
votes
2answers
92 views

How to write multiple spaces in the post?

I want to write multiple spaces in code say many spaces but I want to do this in code block ``. But in this case spaces are merged into one. I found this question but there is no ...
18
votes
1answer
137 views

<!— summary --> now leaves a blank paragraph on top of the About Me section

When I first included a summary in my profile for use with my user card popup, using this syntax: <!-- summary: A short summary of myself goes here! --> ### Heading Full About Me bio... ...
7
votes
1answer
87 views

Allow “small” and “abbr” HTML tags [closed]

Possible Duplicate: Allow the <small> tag A long time ago Jeff posted about allowed HTML tags and also asked what other tags do we want allowed. In the answers to that question, some ...
3
votes
0answers
55 views

Two spaces are needed to create a link after a tag reference [closed]

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 ...
5
votes
0answers
70 views

literal carriage return character [closed]

Possible Duplicate: Why should users have to press Return twice to insert new lines? Apologies if this has been asked before (I can't find it, but that does not mean anything). I have been ...
0
votes
1answer
48 views

Edit revision: markdown source won't work?

On the revision page there is a button with <> on a little page. "show the markdown source side by side" I don't see any markdown there. As I understand, I should see there tags as in this post? ...
-3
votes
1answer
100 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) markdown ...
4
votes
2answers
50 views

How valuable are images containing text, compared with markdown?

This morning, I updated this question to convert text contained in the embedded image to markdown: Is instruction pointer a program visible register? It seems to me that the text is more valuable in ...
0
votes
0answers
29 views

Markdown code block parsing fails after lists [closed]

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 ...
0
votes
0answers
33 views

Emphasis doesn't work with underscore [closed]

Possible Duplicate: Bolding words that include an underscore doesn't work while editing some posts I found out, that emphasis doesn't work if there is an underscore in the sentence. ...
8
votes
3answers
152 views

> is closing html comments without a — delimiter

If I try to put something like this into a question or answer <!-- <br>s are important here --> the first > after the "br" is matched to the first < before the "!--", resulting in ...
3
votes
2answers
110 views

Bolding words that include an underscore doesn't work

Here's the screenshot of my experience with italic text over Stack Overflow. Basically it just wraps the word into asterisks and leaves it like this. Here on Meta I do not observe this bug.
-7
votes
2answers
102 views

Allow suppression of automatic linking of web addresses

As most of you know, putting a link into a post automatically makes it a link (e.g. http://localhost/) We can force the linkification with angle brackets (<http://localhost/>) if the markdown ...

1 2 3 4 5 10