vote up 22 vote down star
7

Right now there are too many places where the javascript-rendered preview of a post does not match the final result after it's posted. This is especially true around certain link URLs, but can happen in a number of places.

The preview should be an exact match for the live post, and anywhere this isn't true is a fail.

flag

16% accept rate
8  
Post an example... – Michael Pryor Jun 30 at 16:53
1  
I've had issues for this too. They're infrequent, however, and I can't remember the details. The next time it happens, I'll post on this question. Perhaps it's a bug in the Markdown editor/library? – Jason S Jun 30 at 18:24
Examples are hard to come by, because normally when it happens you fiddle with it until you find something acceptable. We're starting to see some good ones in the answers, though. – Joel Coehoorn Jul 1 at 17:46
@Michael Pryor: I have an example meta.stackoverflow.com/questions/18323/… – dlamblin Sep 5 at 6:40
Belongs on failblog. Just kidding of course. – Koning Baard XIV Sep 15 at 19:29
Another example is referenced here: meta.stackoverflow.com/questions/26961/… – Æther Oct 22 at 20:19

19 Answers

vote up 4 vote down

This is a test

The text above shows as code in preview, but not in the answer.

link|flag
Seems to only happen when the answer starts with a newline – Greg Jun 30 at 18:03
To reproduce - Press Enter, add 4 spaces then some text. It previews as code but doesn't post as code. – Greg Jun 30 at 18:08
7  
I'm guessing that there's some whitespace trimming going on that's removing those 4 spaces that ends up removing the code formatting. – Kyle Cronin Jul 1 at 16:20
vote up 3 vote down

Aha, got an example for you: http://stackoverflow.com/questions/1069981/

It looks like the unmatched _ and * are giving the preview grief, but the regular renderer handles them fine.

Another test: (yes, I know, it should be in a code section, rather than as regular text)

SELECT * FROM whiz_bang LEFT JOIN foo_bar ON whiz_bang.id = foo_bar.id

link|flag
5  
ummm... ok, why the -1? (don't really care, I'm just curious) – Jason S Jul 2 at 13:39
vote up 1 vote down

This for instance:

HKLM\Software\*companyname*\*applicationname*

renders like this in the preview:

HKLM\Software\companyname\applicationname

(companyname and application name are italic, the first one is with markdown notation, the second one with <i><\i>)

link|flag
vote up 4 vote down

Another example (also mentioned here):

As I understand it, xib files are xml n**ib** files. xib files are compiled into nibs when the application is built. The xib format was created because nib files don't mesh well with version control (because they're not text), whereas a plain text xml file works well.

In the preview, the x in xml and ib in nib are both bold. However, when submitted, the ib has the stars ** around it instead of being bold.

link|flag
works as well with it*A*lics or quo`T`ed letters. (or works not as you might see it) – mihi Aug 6 at 17:20
blog.stackoverflow.com/2009/10/… – gs Nov 9 at 12:41
vote up 5 vote down

When a plaintext link is used, the markdown preview doesn't show it converted to a link.

http://www.example.com

Whereas the posted text does convert it to a link.

link|flag
vote up 8 vote down

If it something really bugs you (and you know a bit of Javascript), you can fix it yourself:

http://github.com/derobins/wmd/tree/master

http://code.google.com/p/wmd-new/

I'm not sure how often SO updates, but this is the Stack Overfow branch of the WMD Markdown Editor, which includes showdown.js - the cause of all these problems (the Javascript markdown renderer)!

link|flag
good point. I may play with that some - too busy for the forseeable, but soon perhaps. – Joel Coehoorn Jul 2 at 3:29
2  
It says it's not the most recent code. Don't really want to play around with it because I'm not sure exactly what was added/removed. – Ian Elliott Jul 2 at 4:06
1  
wmd-new is the most recent code. Try again. – Jeff Atwood Jul 3 at 1:15
..that's the problem with Github's forking - it's difficult to see which is the "right" repository sometimes.. Thanks for fixing the links! – dbr Jul 3 at 1:38
vote up 1 vote down

be sure to test things in the babelfish markdown parser engine

http://babelmark.bobtfish.net/

That said, be aware that certain things, like intra-word emphasis, we have explicitly disabled.

link|flag
Where can I find out the exact rules for what intra-word emphasis is disallowed on the server side markdown implementation? I'd like to modify the javascript to match. This has become very important to me since we implemented jsMath on Math Overflow (my SE site). f_n=g_n produces "f<em>n=g</em>n" in the preview and "f_n=g_n" in the final output, but f'_n=g_{n-1} produces "f'<em>n=g</em>{n-1}" in both the preview and final output. – Anton Geraschenko Nov 7 at 16:06
I've guessed some of the rules from experimenting. Most of the problems I come across would be fixed by a tiny patch I posted on meta.SE (meta.stackexchange.com/questions/1106/…), and I don't think any new problems are introduced. – Anton Geraschenko Nov 7 at 19:14
of course, those underscores can be escaped by the user as well.. or placed in a code block where no escaping is necessary.. – Jeff Atwood Nov 7 at 22:46
The point is that most of the time, the underscores don't have to be escaped because of the server side implementation (which is good), but the preview doesn't give any indication about when you do or don't need to escape the underscores. So some of my users have been ignoring the preview entirely because they know it's not accurate, and then being surprised when something like f'_n=g_{n-1} doesn't behave as expected. If adding 5 lines of code to wmd.js can fix the problem (or most of it anyway), why not do it? – Anton Geraschenko Nov 8 at 6:33
vote up 1 vote down

tabs have inconsistent behavior:

public class SignExtend16 {
	public static int get16Bits(int x)
	{ 
		return (x & 0xffff) - ((x & 0x8000) << 1);
	}
}

this shows up as 4 spaces per tab in the preview, but 8 spaces per tab in the final view.

link|flag
1  
tabs aren't supported – Jeff Atwood Jul 31 at 12:54
vote up 2 vote down

Another example is that some disallowed HTML tags (e.g. <tt>) appear to work (because they render in the preview.) You should of course be using <code> instead, but the preview does not warn you.

link|flag
vote up 1 vote down

My attempt to provide examples of all the Markdown syntax has an example of this bug:

http://meta.stackoverflow.com/questions/3122/formatting-sandbox/3431#3431

Look at the first link - it should go all the way to the end of the line. It does do this in the preview, but not in the final, posted answer.

link|flag
vote up 1 vote down

The following markdown breaks:

![`<b>`Testing something](http://stackoverflow.com/content/img/so/logo.png)

It renders..

<b>Testing something" title="" />

For example:

<b>Testing something" title="" />

link|flag
vote up 1 vote down

Dollar-underscore in a starred section needs a backslash on the underscore to appear : $ as just dollar-underscore, $_ as dollar-backslash-underscore*

These both show up in the preview as $_, but in the post they are different.

link|flag
vote up 1 vote down

Another example

If I try to embed code using the <% for ASP.NET then the preview goes and doesn't display everything including and between the opening <% and the closing %>

link|flag
vote up 1 vote down

Another instance of this problem:
http://meta.stackoverflow.com/questions/22161/entire-section-of-text-turning-into-link-2

In that case, it looked like an odd mix of intra-word _ characters mixing poorly with hyperlinks, but the main thing is that it worked in the preview but rendered poorly when posted.

link|flag
vote up 2 vote down

Another "bug" - underscores need to be escaped in pairs:

The a\_test.php file forwards to *b_test.php*

renders as

The a_test.php file forwards to *b_test.php*

Where as it should render as (and does so in the preview):

The a_test.php file forwards to b_test.php

Escaping the second underscore makes it render correctly:

The a\_test.php file forwards to *b\_test.php*
link|flag
vote up 0 vote down

The boldness should stop after the M in the first pre section; one of the other elements is incorrectly terminated with a b, but it looks fine on preview:


Following from Pillsy's reference to matrix exponentiation, such that for the matrix

M = [1 1] 
    [1 0] 

then

fib(n) = Mn1,2

Raising matrices to powers using repeated multiplication is not very efficient.

link|flag
vote up 0 vote down

I had a problem with and escaped backticks earlier on SU.

Escaped backticks: Command-\</kbd> and <kbd>Shift</kbd>-<kbd>Command</kbd>-<kbd>\.

This does not seem to render here on Meta. On SU the preview was OK, but the actual posted answer seemed to have rendered as if the escapes on the backticks were ignored.

link|flag
vote up 0 vote down

The following is not about the preview (which looks the same as the final result), but just in case mentioning it here is appreciated: adding a newline before one of the closing </pre>'s might break newlines in other parts of the same post.

Things seem to be formatted fine if the first closing </pre> is on a new line by itself, or if all closing </pre>'s are on the last line of their <pre> blocks. But if the first closing </pre> is at the end of the last line, then using a closing </pre> on a new line somewhere later, messes up the text above it, a bit:


Some text in <pre>, closing </pre> on the same line.
Line, surrounded by blank lines. Should be a new paragraph. Line, surrounded by blank lines. Should be a new paragraph.
More text in <pre>, closing </pre> on the next line.

Line, surrounded by blank lines. Should be a new paragraph.

Line, surrounded by blank lines. Should be a new paragraph.

link|flag
vote up 0 vote down
This [link] shows up in the preview, but not in the post.

  [link]: http://www.example.com/

This [link] shows up in the preview, but not in the post.

link|flag

Your Answer

Get an OpenID

Not the answer you're looking for? Browse other questions tagged or ask your own question.