vote up 27 vote down star
8

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

18% accept rate
9  
Post an example... – Michael Pryor Jun 30 at 16:53
one problem with this post, is I can't mark answers completed. So each of these issues, if validated, MUST be opened as new questions to be handled correctly. – Jeff Atwood Dec 23 at 9:32
1  
so as a result, I have to delete the answers that I believe are fixed. Sorry. 10k'ers who can see delted answers -- if you disagree, please reopen them as new questions. – Jeff Atwood Dec 23 at 9:36
You could do like they did in the "great retag" question, and mark them "done" at the front using kbd markup so it stands out. – Joel Coehoorn Dec 31 at 14:52
But you're right: we should have had a tag for this rather than a single question. It just became a burden keeping up with all the reports. – Joel Coehoorn Dec 31 at 14:52

3 Answers

vote up 10 vote down

If it something really bugs you (and you know a bit of Javascript or C# and regular expressions), you can help fix it:

Client side rendering:

http://github.com/derobins/wmd/tree/master
http://code.google.com/p/wmd-new/

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)!

Server side rendering:

http://code.google.com/p/markdownsharp/

link|flag
vote up 2 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
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
It would be really nice if they were supported. My space bar needs a rest. – P Daddy Dec 9 at 23:32
1  
yes, but pressing TAB in the editor moves you to the next field.. the only way to get them in the editor is to paste them in. So, questionable value here. – Jeff Atwood Dec 24 at 1:02
if you need this, open it as a standalone bug – Jeff Atwood Dec 26 at 12:30
The quick hack for "saving your spacebar" is to search and replace the tabs with four spaces in an external text editor. – Spoike Dec 31 at 8:56

Your Answer

Get an OpenID

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