We made a few key technology bets when we created Stack Overflow:
I’ll defer the discussion on the other two items for another day, but after spending a year immersed in Markdown — the lightweight markup language we use to format posts on all Trilogy sites — I have some thoughts I’d like to share.
We knew early on that there were a handful of Markdown Gotchas, thanks to the sage advice of John Fraser (who, sadly, I have completely lost contact with.) Based on those gotchas, we quickly adjusted our Markdown support to fix a few obvious things:
- Removed support for intra-word emphasis
like_this_example - Added auto-hyperlink support for http:// URLs in posts
Apparently github also uses Markdown, and they independently arrived at some of the same conclusions we did — synthesizing something they call GitHub Flavored Markdown.
- Removed support for intra-word emphasis
like_this_example - Added auto-hyperlink support for http:// URLs in posts
- Automatic return-based linebreaks instead of “two spaces at end of line” linebreaks
- Support for some magic strings that auto-convert to GitHub specific links
Since GitHub and Stack Overflow match exactly on #1 and #2, it’s fairly safe to say that those are in fact deficiencies in Markdown, at least for a programming audience. (Though I’d argue they apply to general audiences, too.)
As for #3, that’s one I hadn’t considered. In normal Markdown, this:
Roses are red¶ Violets are blue¶
Will render like this:
Roses are red violets are blue
The Markdown answer is to add two spaces at the end of the line (or a literal <br>, I suppose).
Roses are red ¶ violets are blue¶
Although it’s easy once you know the trick, this is far from intuitive to most. I’m reminded a bit of the double-click mouse problem. I wonder if we should adopt the GitHub linebreak approach here.
As for the fourth item, when text is entered in these specific formats …
* SHA: be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2 * User@SHA ref: mojombo@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2 * User/Project@SHA: mojombo/god@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2 * \#Num: #1 * User/#Num: mojombo#1 * User/Project#Num: mojombo/god#1
… those magic strings are detected by the GitHub Flavored Markdown and auto-converted into GitHub specific hyperlinks. Something similar has been proposed on meta for internal Stack Overflow references, so this is an idea we’ve been entertaining for some time as well.
Markdown is remarkably flexible, because it allows you to intermix a narrow list of whitelisted HTML tags with Markdown “fancy ASCII” syntax in a fairly logical way, at least most of the time.
So, now that you’ve had a chance to mess around with Markdown for a year — what are your thoughts?



October 15th, 2009 at 2:43 am
Markdown is a godsend compared to trying to do formatting on many other forums; but I suspect (without any qualifying evidence) it is *mainly* useful on SO/SF (mainly SO). I wonder how much a stackexchange site will use it, other than via the buttons, and whether many of the things (like indents etc) will *add* confusion rather than aid expressiveness.
October 15th, 2009 at 2:50 am
I’m all for dropping the “last two spaces equal newline” approach.
What I like about Markdown and similar languages is that it’s simple ASCII-based rich text. You have some tools to decorate the plaintext with and when you look at it, you can easily imagine how it will look rendered into something fancier, like HTML.
And to me, the fact that a plain newline in the text is simply ignored breaks the metaphor.
October 15th, 2009 at 3:10 am
+1 for removing last two spaces equal newline
Its just unintuitive
October 15th, 2009 at 3:24 am
There’s a PHP Markdown Extra project (http://michelf.com/projects/php-markdown/extra/) that I have been using that battles some of these problems.
But, since I was using that for systems documentation, and it wasn’t expressive enough, I needed to expand that further with a fork of my own (http://github.com/wolfie/php-markdown).
Needless to say, Markdown is pretty awesome, but has some deficiencies.
October 15th, 2009 at 3:27 am
Having linebreaks automatically work without having to type the extra 2 lines would be really nice.
October 15th, 2009 at 3:28 am
Yes, fix the return thing. The return key is for ending lines, the fact that it generally doesn’t is bloody annoying (in other words, it’s a bug, not a feature).
October 15th, 2009 at 3:29 am
Automatic return-based linebreaks instead of “two spaces at end of line” linebreaks has been always being an issue. I’ve used Markown in serveral intranets and clients have always complained about it.
October 15th, 2009 at 4:07 am
Call me Mr Malcontent, but I’d much prefer to edit inside the “preview” rather than deal with the special markdown codes. (Something like FCK editor.)
October 15th, 2009 at 4:49 am
I’m loving it and currently using it as the editor for my own blog.
October 15th, 2009 at 5:18 am
Yes, the two spaces for return has got to go. It really is counter-intuitive, and I’m ashamed to say it took me about 8 months to realize it was even there. I used to just deal with two lines between sentences.
As far as the internal links; I think that’s almost a ‘must’, with the proviso that you now have to add ‘regular’ links in when the data dump is done.
October 15th, 2009 at 5:20 am
One thing that has annoyed most is the 4 space rule for posting code listing. When I need to post a code, it would be cut and paste from an editor. So I would have to go through every line and add 4 spaces in front. Tabs won’t work because typing tab in text window moves focus to next field. I am not sure if there is
tag some where which I can enclose a program listing to avoid typing 4 space in front of every line.October 15th, 2009 at 5:24 am
I had typed ampersand lt; code ampersand gt; in between “is” and “tag” in comment above. pl read that along with the previous comment.
October 15th, 2009 at 5:31 am
I never noticed the two space thing, and I’m glad I didn’t implement standard markdown because of it. There are too many people raised on the old typewriter mentality of two spaces after every period, and I’m sure that would drive them nuts.
Sad part is they never knew “why” you did that, and therefore they just do it – despite the fact that on a PC with a proportional font, its not necessary any more. But that’s a rant for another day.
October 15th, 2009 at 5:37 am
I don’t understand why 1 line break doesn’t equal 1 line break. Since wordwrap is automatic in every text editor of the past 15ish years, is there ever some situation where you type a linefeed but mean it to continue the same line?
October 15th, 2009 at 6:03 am
+1 for changing the “two spaces” rule. I’ve been using Markdown at work for a year now and two spaces is completely counter-intuitive to the users.
October 15th, 2009 at 6:26 am
Here I go, being contrarian again, but I actually like the two spaces at the end of the line thing.
I didn’t know it existed until now. Before I was inserting br tags on the rare occasion where I actually wanted a return in the Markdown code to represent a physical line break.
With the proposed change, if you just want to type a paragraph with no breaks, you’ll have to type the whole thing on one line, and you’ll be constantly scrolling back and forth to read what you wrote.
October 15th, 2009 at 6:27 am
+1 fix 2 spaces, its the most annoying thing in markdown that I have to remember when I’ve been away even for a day or two. Maybe I’m getting old, but its keeping me slower than most at answers.
October 15th, 2009 at 6:27 am
+1 for fixing the return problem, that really drives me mad.
Also performance is terrible if you’re composing a long post. Maybe an option to toggle the preview on and off would be useful
October 15th, 2009 at 6:29 am
@Dinah, the window in which you type doesn’t have automatic wordwrap. That’s the problem.
I’m not familiar with many markup languages, but the ones I know (HTML and XML) work the same way. In most contexts, a line break is treated like a space.
October 15th, 2009 at 6:43 am
@Rajkumar S:
Not 1 tag, but two of them will do it:
...Also, you can just highlight your snippet and hit ctrl-K or use the code toolbar button.
Oh, and +1 for fixing the extra spaces thing.
October 15th, 2009 at 6:44 am
Lol, it actually coded my example. Trying again:
<pre><code> … </pre></code>
October 15th, 2009 at 6:45 am
… one of these years I’ll get it right. Of course close the code tag before closing pre. :(
October 15th, 2009 at 7:09 am
Markdown drives me nuts… not because it is bad, but because I am so used to Trac’s wiki markup. I keep typing my code inside {{{}}} blocks, and wondering why it isn’t working. :)
October 15th, 2009 at 7:10 am
I’d like some type of support for tables. Sometimes you need to post tabular data, and an actual html table would work better (and be easier) that putting everything in an ascii table in a pre block. I think this has been suggested and shot down on MSO already, but I figure I’ll mention it again here anyway…
October 15th, 2009 at 7:14 am
It doesn’t really matter what the newline method is as long as it’s easily accessible when you need to know what it is. Every wiki syntax uses something: markdown uses spaces, CREOLE uses <> or <>, can’t remember textile’s. Whatever it us should be in the quick markdown instructions shown when editing a post. It is something most people seem to be looking for when posting.
Yes internal links are very useful, that would be a nice add.
October 15th, 2009 at 7:16 am
@Patrick McElhaney: What browser are you using?? The text box absolutely wraps. I type long paragraphs of text without manually entering a line break at the end of each line, and the text wraps around.
October 15th, 2009 at 7:57 am
Okay, it /does/ wrap, but it’s a virtual wrap, so the automatic line breaks are sent to the server as spaces.
It should be changed so that it doesn’t wrap at all (<textarea wrap=”off”>).
October 15th, 2009 at 8:02 am
Correction: The automatic/virtual line breaks aren’t sent to the server at all. The text moves to the next line in the editor, but no character is inserted between the two lines.
October 15th, 2009 at 8:41 am
Posted a meta.SO question on this. Seems a better place for such a discussion than these old fashioned “comments”:
http://meta.stackoverflow.com/questions/26011/should-the-markdown-renderer-treat-a-single-line-break-as-br
October 15th, 2009 at 8:42 am
My vote: Merge the two codebases if possible and let EVERYONE benefit from a merged code base. Though I am not certain how to cleanly deal with the special link in case #4.
October 15th, 2009 at 9:29 am
Why isn’t markdown available for comments? I would also like to see the ability to edit comments. There are times I would just notice I have a spelling mistake.
October 15th, 2009 at 9:57 am
Based on those gotchas, we quickly adjusted our Markdown support to fix a few obvious things:
1. Removed support for intra-word emphasis like_this_example
The fact that preview still does intra-word emphasis wasn’t obvious?
October 15th, 2009 at 10:17 am
Hyperlinking is *painful*. I never remember if it’s (like)[http://this] or [http://like](this) or [like](http://this) or (http://like)this. Why can’t it be something simple [[like http://this ?
October 15th, 2009 at 10:33 am
I would really like to hear your feedback on using ASP.NET MVC.
October 15th, 2009 at 10:34 am
I’ve greatly enjoyed the Markdown experience on the site. I do however wonder if we all should have learned MediaWiki syntaxt instead – it seems to be used quite a bit out in the wild.
Every time I go on to Wikipedia to change the events of the past, I have to use the MediaWiki syntax sheet and curse them for not using Markdown.
October 15th, 2009 at 10:51 am
I’ve never understood why forum software would default to converting returns into spaces. Drives me crazy. (I know, because HTML does, and features aren’t free…)
The forum at http://www.thegreenbutton.com is far worse, at least StackOverflow lets a DOUBLE return stay like it is. Their forum took a long, nicely-formatted post with breaks, numbers, and bullets, and crammed it into a single huge, unreadable paragraph. Had to manually add a BR to the end of EVERY SINGLE LINE.
Please, please implement #3.
October 15th, 2009 at 11:04 am
+1 for removing last two spaces equal newline.
October 15th, 2009 at 2:41 pm
I agree the two-spaces-equals-br thing is unnatural and probably has to go, even though I didn’t even know about it, but I’d advocate that the first line break always be ignored, a la TeX. Which means, a single line break is nothing, two consecutive line breaks are a br, more line breaks add blank lines if it makes sense.
That was an awful lot of text for something not really worth more than 2 cents, but meh ;)
October 15th, 2009 at 9:57 pm
I have to confess to not noticing the ‘double-space is break’ trick – though it probably explains a few oddities I’ve found when editing other posts.
The one thing I’ve not found how to do in a year of trying is how to get back-ticks into code in running text. This is of most relevance when trying to put fragments of shell script inline. Even though ‘$(…)’ is preferred, it would be useful to know how to do that.
I also find that the extra space appearing at either end of back-ticked code is a bit jarring these days; I’d prefer to see that reduced or eliminated.
One other oddity: I’ve not found a way to get code as the first part of the answer – before any running text – without (perhaps) using explicit code or pre tags.
On the whole, Markdown has matured and is pretty usable.
(Oh, is there some way of expanding tabs into spaces?)
October 16th, 2009 at 12:03 am
I have one *huge* problem with Markdown… it’s too addictive.
I find myself trying to use it in emails, blog posts, blog comments etc. I wonder if there’s a Wave Markdown robot yet? Hmm…
I agree with “a paid nerd” though: the link format is hard to remember. I’m lost without Ctrl-L on that front, although I do the rest of markup manually for the most part.
Distinct keyboard shortcuts for “indent” and “unindent” (rather than Ctrl-K’s context-sensitive behaviour) would be welcome IMO (as per a recent Meta question, IIRC) – but that’s not the format really, but the editor.
I wonder how successful SO would have been without a decent formatting tool… it’s *so* fundamental to the site, I can’t imagine working without it.
October 16th, 2009 at 12:15 am
For #4 what things would you link to in SO?
Well, for me it is either searches, questions or people.
For people there is already a markdown, just not implemented that is @Username (thanks twitter). Why not just change those to links?
For searches and questions, not sure of a good syntax, but something similar to the current links would be good.
For questions maybe [][Q] for example: [Duplicate of this][Q776655]
October 16th, 2009 at 12:38 am
Agree with the line-break changes (#3). But how about also supporting multi-line paragraphs, one way to solve it would be to escape the line-break with a back-slash.
This is\
one paragraph.
October 16th, 2009 at 1:45 am
What I have most problems with is trying to do ASCII-art diagrams (for version-control questions), as does only some escaping of Markdown syntax (you still have to write < for <); it preserves whitespace but do not use monospace font (I think).
October 16th, 2009 at 1:46 am
The above is missing <pre> in what should be “as <pre> does”…
October 16th, 2009 at 5:58 am
@ Jonathan, you can escape the backtick with a backslash: \`
October 16th, 2009 at 7:43 am
+1000 for removing last two spaces equal newline. It is totally ridiculous
October 16th, 2009 at 7:49 am
Jeff – What was the reasoning around using Markdown vs. providing a WYSIWYG editor? I can’t recall. Was it to be more programmer friendly?
October 16th, 2009 at 8:24 am
The Markdown docs explain why newlines work the way they do.
http://meta.stackoverflow.com/questions/26011/should-the-markdown-renderer-treat-a-single-line-break-as-br/26170#26170
October 16th, 2009 at 10:07 am
I absolutely *hate* the 2 space rule. Please change that to take a regular return.
October 16th, 2009 at 10:58 am
I have a suggestion that might allow everyone to have their cake and eat it too. Leave the parser, but change the *editor* to add two spaces and a newline when the ENTER key is pressed.
That way code would remain standard Markdown and compatible with every other Markdown parser. Also new posts/edits would be compatible with existing posts.
October 17th, 2009 at 7:34 am
One small change which I think would make things a little easier would be to the Code Sample (ctrl+K) tool.
It should replace all tab characters with spaces (I would prefer 2 but even 4 would be better).
This would eliminate the tendency for code to disappear to the right requiring scrolling due to 8 character indentations generated by tab characters.
October 18th, 2009 at 3:48 pm
The thing about markup I dislike most is that I don’t know of a way to enter unformatted text. Like something that would render in Courier New with newlines and spaces exactly where I put them.
Interesting tip about double space at the end, it actually does part of that!
Oh yeah, I don’t quite understand what “blockquote” is supposed to do.
October 20th, 2009 at 8:00 am
The fact that a linebreak in the source is not represented as a lienbreak in rendered HTML is a feature, and an important one. The markdown approach of two spaces indicating a linebreak preserves this feature.
It’s sort of a hidden feature. I discovered it after being more than six months on SO. Before that, I managed without it. Now that I know it, I use it quite often. Since it is hidden, it will not irritate anybody who does not use it. (No, I never heard of anybody putting two spaces after a dot.)
Don’t remove a feature that is helpful to many who know about it, and that does not bother those who don’t know it.
There’s no reason why you should.
October 21st, 2009 at 5:09 am
I personally hate the use of Markdown. Would prefer a WYSIWYG editor for the majority of my posts – actually storing data in markdown if necessary.
It wouldn’t be so bad if every system used the same markdown syntax, but they all vary just a little. This means that you have to remember the particular editors particularities and so every time I use them I have to think about editing rather than thinking about my answer.
I’d be a fan of an editor that has a “source” option. The default for new users would be a WYSIWYG editor with the source option being what you have today for the power users.
I think that style of editor would also work well in the StackExchange sites that are not all as programmer orientated. It would also allow you to iteratively build on the functionality in the WYSIWYG version while allowing people to use the existing editor for the full features that they need.
Don’t get me wrong, I understand the amount of work required to do a decent WYSIWYG editor. But I personally would use it all the time.
October 22nd, 2009 at 3:11 am
I think using the two spaces should always be an exception.
Hence, I actually LOVE that two spaces. It will (should) make people use a blank line if they don’t know the trick, thus enforcing the CSS whitespace formatting the site has defined for P paragraphs. As a user/visitor I think it’s good to adhere to whatever layout is (currently) defined, and one should not try to use BRs to change that. Doing so will brake any future layout changes.
As an example: for a long time I thought the CSS formatting of inline code (the backtick) did not stand out, but I still used it. Nowadays all the old posts use the new CSS.
(People who don’t actually look at the preview can’t be helped, I guess. The two spaces do not give any problem in the preview, and are not required in code or PREs. And the formatting help icon is clearly visible as well.)
October 22nd, 2009 at 11:46 am
So it goes ahead and convert an uppercase ‘V’ in violet into a lowercase ‘v’?
October 23rd, 2009 at 7:39 am
Please adopt adopt the GitHub linebreak approach.
October 23rd, 2009 at 9:17 am
When I press return, I mean return. Why would I enter it if I did not mean it?
What is the point in frustrating me by ignoring me? I have been using Stack Overflow for months and months. I have a plus 1K score. Up till now I have always used ‘br’ for my breaks. I had no idea that the two space thing was there (and I would bet most SO users don’t either).
Again, when I press return, I mean it. If I did not mean it I would not press it (or undo it).
Don’t try to guess when I mean. Just realize that I will type what I mean.
October 23rd, 2009 at 11:24 am
@Jon Skeet:
No, it means you use StackOverflow too much. I suggest a vacation from the site.
Incidentally, I like the StackOverflow editor and how Ctrl-L, Ctrl-K, Ctrl-B, etc… work, but hate MarkDown. MarkDown has a few quirks, such as:
A line break is not a line break in the output
Numbered and bulleted lists require a blank line before them.
The comment box doesn’t allow you to use quotes due to them being full line based.
Surprisingly, none of these are problems in tag-based systems.
Presumably proper separation of concerns are in place and the editor is not tied to MarkDown, so you could switch it out. However, that would only serve to piss people off at this point (ex: Jon Skeet); maybe if you’d switched it, say, a year ago…
October 25th, 2009 at 9:27 am
I didn’t read all the replies so maybe this was already addressed. Allowing line breaks to be ignored in some cases is a function of Markdown’s roots as an attempt to interpret “ASCII conventions”, which really should read “plaintext email conventions”.
Using the “two spaces” rule for paragraph text is painful, and should be made an exception. But the utility of it becomes obvious in blockquotes (in particular) and list items (to a much lesser extent).
I would say it would be a better design decision overall to *only* apply the “two spaces” rule in blockquotes, and to only apply it where new lines are prefixed with the `>` character (that is, inter-paragraph new lines within a blockquote should still be treated as new lines unless they are followed by `>`).
This problem really bit me when I deployed Markdown Extra (which I’d already customized extensively) for an arts site where the users were accustomed to BBCode. That was probably a mistake in the first place, and I overestimated the value of Markdown’s “ease”. But it’s absolutely a mistake to tell a poet that each new line in a stanza must end in two spaces.
Markdown is brilliant, but the “two lines” rule is a design flaw, and it could definitely be removed for wider adoption. As much as “rich text” editors continue to improve, I much prefer the control Markdown allows (and I think more “regular users” would agree if it was more intuitive*, because it’s almost always a lot easier to *type* your **emphasis** than to press buttons or remember potentially unavailable keyboard shortcuts).
* Another change that would probably help would be image and link syntax. I don’t really know what those changes would look like, but it sure would be helpful, as those throw even me off regularly.
October 25th, 2009 at 9:28 am
Oh. Evidently the SO blog doesn’t take Markdown syntax. Well.
October 26th, 2009 at 12:47 am
I really think the formatting needs the whitespace one currently gets for a new paragraph. I never understood why a few people are using line breaks (the extra spaces, or a BR, but NOT a new paragraph) in text, which keeps the whitespace from appearing. I think BRs in the result should be an exception.
So, am I right to assume that (most) people who want to get rid of the double spaces, actually want something like the following?
Return: new paragraph (P)
One or more blank lines: ignored (ignored by a browser anyhow)
Double spaces, Return: line break (BR) without new paragraph
Then what about other formats, like feeds and the data dumps? I like the blank lines in there…
October 27th, 2009 at 11:25 am
Arjan van Bentem,
There are plenty of reasons to use single line breaks instead of paragraphs. I presented one two comments above yours: lines in a stanza of poetry. Obviously that doesn’t apply on SO, but it’s something a general purpose text-to-markup translator should support with ease. Another obvious example would be physical addresses. Yet another would be the various content presented in the opening of a formal letter (name/address/subject).
There’s no reason for Markdown to cling to a broken idea for a single use case (it’s only really useful in blockquotes, and it’s not difficult to imagine how that could be preserved while fixing the new line issue in the rest of the language).
October 28th, 2009 at 7:49 am
@Arjan van Bentem,
How would you keep blockquotes visually distinctive in combination (while editing) without the user suplying extra newlines?
Outside of blockquotes, I see absolutely no reason for markdown not translating single newlines to html-breaks
October 28th, 2009 at 8:18 am
Don’t chuck the two-or-more space + newline = forced linebreak; two newlines = new paragraph rules. The whitespace+newline rule is not so important on site like this one or github, but *it is crucial for almost all other uses of markdown*; as a writer I use it 40 times a day. So, github is *de facto* adding to the babel of seat-of-the-pants, one-for-each-site, one-for-each-application lightweight markup languages — and you would be adding still more. If you don’t like this rule, the true path is to chuck markdown entirely, rather than muddying the waters by pretending to use it. *Otherwise you are injuring Markdown.* You ought to be helping the world standardize around some version of Markdown; I had thought that hitherto you were aiding in that laudable task. If you start thinking like this, the correct path is invent your own markup system, link the spec, call it Overflow, publish your ofl -> html code, etc.
It is one thing to extend Markdown, as Markdown-Extended and Pandoc and Multimarkdown do. This is defensible and right; disabling features is an injury to Markdown, which as users of it, you ought to be defending.
Above all, you should announce your plan on the markdown-discuss list.
The solution is simple:
- Document the feature it more clearly;
- Add a feature that shows the ‘invisibles’ (This may be harder than I am imagining. It makes the employment of the rule completely transparent. I use it in all editors. )
- Best of all would be to announce that you support the full Markdown syntax, or that of one of the extensions that does not disfigure it, like M Extended or Pandoc, and link to Gruber’s specification or theirs.
October 29th, 2009 at 6:41 am
[Let me add "at Stack Overflow et al" to my "I never understood why a few people are using line breaks (the extra spaces, or a BR, but NOT a new paragraph) in text" above.]
November 5th, 2009 at 2:45 pm
I’ve noticed that certain MarkDown bugs have been fixed in the original implementation but have been merged over to the Trilogy’s fork.
In particular, _’s and *’s inside the alt tag of an image cause all sorts of problems. We’re running into this in a big way over at mathoverflow.net, where we want to use alt tags on automatically rendered LaTeX images to hold the original LaTeX code. (We want to keep the original code for both accessibility and editing reasons.) As it is, we’ve had to automatically escape the _’s and *’d instead alt tags, breaking the original LaTeX.
There’s been a bug report on this at meta,
http://meta.stackoverflow.com/questions/12123/bug-with-images-and-markdown but it seems for now this is “a feature not a bug”, even though upstream it has been fixed.