Preview should match the posted view - Meta Stack Overflow most recent 30 from meta.stackoverflow.com2009-11-23T11:28:29Zhttp://meta.stackoverflow.com/feeds/question/1227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view22Preview should match the posted viewJoel Coehoorn2009-06-30T16:48:15Z2009-11-18T14:58:31Z
<p>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.</p>
<p>The preview should be an <em>exact</em> match for the live post, and anywhere this isn't true is a fail.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/1246#12464Answer by Greg for Preview should match the posted viewGreg2009-06-30T17:57:35Z2009-06-30T17:57:35Z<p>This is a test</p>
<p>The text above shows as code in preview, but not in the answer.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/1521#15213Answer by Jason S for Preview should match the posted viewJason S2009-07-01T16:12:52Z2009-07-01T16:12:52Z<p>Aha, got an example for you: <a href="http://stackoverflow.com/questions/1069981/">http://stackoverflow.com/questions/1069981/</a></p>
<p>It looks like the unmatched <code>_</code> and <code>*</code> are giving the preview grief, but the regular renderer handles them fine.</p>
<p>Another test: (yes, I know, it should be in a code section, rather than as regular text)</p>
<p>SELECT * FROM whiz_bang LEFT JOIN foo_bar ON whiz_bang.id = foo_bar.id</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/1545#15451Answer by fretje for Preview should match the posted viewfretje2009-07-01T17:21:03Z2009-07-01T17:21:03Z<p>This for instance:</p>
<p>HKLM\Software\*companyname*\*applicationname*</p>
<p>renders like this in the preview:</p>
<p>HKLM\Software\<i>companyname</i>\<i>applicationname</i></p>
<p>(companyname and application name are italic, the first one is with markdown notation, the second one with <code><i><\i></code>)</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/1670#16704Answer by Kyle Cronin for Preview should match the posted viewKyle Cronin2009-07-02T02:25:55Z2009-07-02T02:25:55Z<p><a href="http://stackoverflow.com/questions/1068191/xcode-whats-up-with-the-nib-xib/1071737#1071737">Another example</a> (<a href="http://meta.stackoverflow.com/questions/1643/bug-bolding-with-isnt-working-properly">also mentioned here</a>):</p>
<blockquote>
<p>As I understand it, xib files are <strong>x</strong>ml 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.</p>
</blockquote>
<p>In the preview, the x in xml and ib in nib are both bold. However, when submitted, the ib has the stars <code>**</code> around it instead of being bold.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/1673#16735Answer by Kip for Preview should match the posted viewKip2009-07-02T02:38:57Z2009-11-18T14:58:31Z<p>When a plaintext link is used, the markdown preview doesn't show it converted to a link.</p>
<p><a href="http://www.example.com" rel="nofollow">http://www.example.com</a></p>
<p>Whereas the posted text does convert it to a link.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/1688#16888Answer by dbr for Preview should match the posted viewdbr2009-07-02T03:22:23Z2009-07-02T03:56:16Z<p>If it something really bugs you (and you know a bit of Javascript), you can fix it yourself:</p>
<p><a href="http://github.com/derobins/wmd/tree/master" rel="nofollow">http://github.com/derobins/wmd/tree/master</a></p>
<p><strong><a href="http://code.google.com/p/wmd-new/" rel="nofollow">http://code.google.com/p/wmd-new/</a></strong></p>
<p>I'm not sure how often SO updates, but this is the Stack Overfow branch of the WMD Markdown Editor, which includes <code>showdown.js</code> - the cause of all these problems (the Javascript markdown renderer)!</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/1693#16931Answer by Jeff Atwood for Preview should match the posted viewJeff Atwood2009-07-02T03:53:36Z2009-07-02T03:53:36Z<p>be sure to test things in the babelfish markdown parser engine</p>
<p><a href="http://babelmark.bobtfish.net/" rel="nofollow">http://babelmark.bobtfish.net/</a></p>
<p>That said, be aware that certain things, <a href="http://meta.stackoverflow.com/questions/1643/bug-bolding-with-isnt-working-properly-closed">like intra-word emphasis</a>, we have explicitly disabled.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/2224#22241Answer by Jason S for Preview should match the posted viewJason S2009-07-03T17:03:48Z2009-07-03T17:03:48Z<p>tabs have inconsistent behavior:</p>
<pre><code>public class SignExtend16 {
public static int get16Bits(int x)
{
return (x & 0xffff) - ((x & 0x8000) << 1);
}
}
</code></pre>
<p>this shows up as 4 spaces per tab in the preview, but 8 spaces per tab in the final view.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/2685#26852Answer by finnw for Preview should match the posted viewfinnw2009-07-06T09:21:39Z2009-07-06T09:21:39Z<p>Another example is that some disallowed HTML tags (e.g. <code><tt></code>) appear to work (because they render in the preview.) You should of course be using <code><code></code> instead, but the preview does not warn you.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/3478#34781Answer by a_m0d for Preview should match the posted viewa_m0d2009-07-08T05:41:45Z2009-07-08T05:41:45Z<p>My attempt to provide examples of all the Markdown syntax has an example of this bug:</p>
<p><a href="http://meta.stackoverflow.com/questions/3122/formatting-sandbox/3431#3431">http://meta.stackoverflow.com/questions/3122/formatting-sandbox/3431#3431</a></p>
<p>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.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/11365#113651Answer by dbr for Preview should match the posted viewdbr2009-07-31T08:39:39Z2009-07-31T08:39:39Z<p>The following markdown breaks:</p>
<pre><code>
</pre>
<p>It renders..</p>
<pre><code><b>Testing something" title="" />
</code></pre>
<p>For example:</p>
<p><b></code>Testing something" title="" /></p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/11375#113751Answer by Legooolas for Preview should match the posted viewLegooolas2009-07-31T11:03:57Z2009-07-31T11:03:57Z<p><em>Dollar-underscore in a starred section needs a backslash on the underscore to appear : $</em> as just dollar-underscore, $_ as dollar-backslash-underscore*</p>
<p>These both show up in the preview as $_, but in the post they are different.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/13058#130581Answer by blowdart for Preview should match the posted viewblowdart2009-08-07T09:03:42Z2009-08-07T09:03:42Z<p>Another example</p>
<p>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 %></p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/22164#221641Answer by Joel Coehoorn for Preview should match the posted viewJoel Coehoorn2009-09-16T15:11:12Z2009-09-16T15:11:12Z<p>Another instance of this problem:<br />
<a href="http://meta.stackoverflow.com/questions/22161/entire-section-of-text-turning-into-link-2">http://meta.stackoverflow.com/questions/22161/entire-section-of-text-turning-into-link-2</a></p>
<p>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.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/23291#232912Answer by Greg for Preview should match the posted viewGreg2009-09-24T10:26:49Z2009-09-24T10:26:49Z<p>Another "bug" - underscores need to be escaped in pairs:</p>
<pre><code>The a\_test.php file forwards to *b_test.php*
</code></pre>
<p>renders as </p>
<blockquote>
<p>The a_test.php file forwards to *b_test.php*</p>
</blockquote>
<p>Where as it should render as (and does so in the preview):</p>
<blockquote>
<p>The a_test.php file forwards to <em>b_test.php</em></p>
</blockquote>
<p>Escaping the second underscore makes it render correctly:</p>
<pre><code>The a\_test.php file forwards to *b\_test.php*
</code></pre>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/24763#247630Answer by Pete Kirkham for Preview should match the posted viewPete Kirkham2009-10-06T17:28:29Z2009-10-06T17:33:32Z<p>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:</p>
<p><hr /></p>
<p>Following from Pillsy's reference to matrix exponentiation, such that for the matrix</p>
<pre>
<b>M = [1 1]
[1 0]
</pre>
<p>then <pre><i>fib</i>(<i>n</i>) = <b>M</b><sup>n</sup>1,2</b></pre></p>
<p>Raising matrices to powers using repeated multiplication is not very efficient.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/27680#276800Answer by Chris Johnsen for Preview should match the posted viewChris Johnsen2009-10-29T08:56:49Z2009-10-29T08:56:49Z<p>I had a problem with and escaped backticks earlier on SU.</p>
<p>Escaped backticks: <kbd>Command</kbd>-<kbd>\<code></kbd> and <kbd>Shift</kbd>-<kbd>Command</kbd>-<kbd>\</code></kbd>.</p>
<p>This does not seem to <a href="http://meta.stackoverflow.com/questions/1939/kbd-elements-are-way-intrusive/23571#23571">render here on Meta</a>. On SU the preview was OK, but the actual posted answer seemed to have rendered as if the escapes on the backticks were ignored.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/29085#290850Answer by Arjan van Bentem for Preview should match the posted viewArjan van Bentem2009-11-09T12:06:25Z2009-11-09T12:06:25Z<p>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 <em>one</em> of the closing <code></pre></code>'s might break newlines in other parts of the same post.</p>
<p>Things seem to be formatted fine if the <em>first</em> closing <code></pre></code> is on a new line by itself, or if <em>all</em> closing <code></pre></code>'s are on the last line of their <code><pre></code> blocks. But if the first closing <code></pre></code> is at the end of the last line, then using a closing <code></pre></code> on a new line somewhere later, messes up the text above it, a bit:</p>
<p><hr></p>
<pre>Some text in <pre>, closing </pre> on the same line.</pre>
Line, surrounded by blank lines. Should be a new paragraph.
Line, surrounded by blank lines. Should be a new paragraph.
<pre>More text in <pre>, closing </pre> on the next line.
</pre>
<p>Line, surrounded by blank lines. Should be a new paragraph.</p>
<p>Line, surrounded by blank lines. Should be a new paragraph.</p>
http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/30162#301620Answer by jleedev for Preview should match the posted viewjleedev2009-11-18T05:01:34Z2009-11-18T05:01:34Z<pre><code>This [link] shows up in the preview, but not in the post.
[link]: http://www.example.com/
</code></pre>
<p>This [link] shows up in the preview, but not in the post.</p>