Preview should match the posted view - Meta Stack Overflow most recent 30 from meta.stackoverflow.com 2009-11-23T11:28:29Z http://meta.stackoverflow.com/feeds/question/1227 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view 22 Preview should match the posted view Joel Coehoorn 2009-06-30T16:48:15Z 2009-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#1246 4 Answer by Greg for Preview should match the posted view Greg 2009-06-30T17:57:35Z 2009-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#1521 3 Answer by Jason S for Preview should match the posted view Jason S 2009-07-01T16:12:52Z 2009-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#1545 1 Answer by fretje for Preview should match the posted view fretje 2009-07-01T17:21:03Z 2009-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>&lt;i&gt;&lt;\i&gt;</code>)</p> http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/1670#1670 4 Answer by Kyle Cronin for Preview should match the posted view Kyle Cronin 2009-07-02T02:25:55Z 2009-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#1673 5 Answer by Kip for Preview should match the posted view Kip 2009-07-02T02:38:57Z 2009-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#1688 8 Answer by dbr for Preview should match the posted view dbr 2009-07-02T03:22:23Z 2009-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#1693 1 Answer by Jeff Atwood for Preview should match the posted view Jeff Atwood 2009-07-02T03:53:36Z 2009-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#2224 1 Answer by Jason S for Preview should match the posted view Jason S 2009-07-03T17:03:48Z 2009-07-03T17:03:48Z <p>tabs have inconsistent behavior:</p> <pre><code>public class SignExtend16 { public static int get16Bits(int x) { return (x &amp; 0xffff) - ((x &amp; 0x8000) &lt;&lt; 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#2685 2 Answer by finnw for Preview should match the posted view finnw 2009-07-06T09:21:39Z 2009-07-06T09:21:39Z <p>Another example is that some disallowed HTML tags (e.g. <code>&lt;tt&gt;</code>) appear to work (because they render in the preview.) You should of course be using <code>&lt;code&gt;</code> instead, but the preview does not warn you.</p> http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/3478#3478 1 Answer by a_m0d for Preview should match the posted view a_m0d 2009-07-08T05:41:45Z 2009-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#11365 1 Answer by dbr for Preview should match the posted view dbr 2009-07-31T08:39:39Z 2009-07-31T08:39:39Z <p>The following markdown breaks:</p> <pre><code>![`&lt;b&gt;`Testing something](http://stackoverflow.com/content/img/so/logo.png) </pre> <p>It renders..</p> <pre><code>&lt;b&gt;Testing something" title="" /&gt; </code></pre> <p>For example:</p> <p>&lt;b&gt;</code>Testing something" title="" /></p> http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/11375#11375 1 Answer by Legooolas for Preview should match the posted view Legooolas 2009-07-31T11:03:57Z 2009-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#13058 1 Answer by blowdart for Preview should match the posted view blowdart 2009-08-07T09:03:42Z 2009-08-07T09:03:42Z <p>Another example</p> <p>If I try to embed code using the &lt;% for ASP.NET then the preview goes and doesn't display everything including and between the opening &lt;% and the closing %></p> http://meta.stackoverflow.com/questions/1227/preview-should-match-the-posted-view/22164#22164 1 Answer by Joel Coehoorn for Preview should match the posted view Joel Coehoorn 2009-09-16T15:11:12Z 2009-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#23291 2 Answer by Greg for Preview should match the posted view Greg 2009-09-24T10:26:49Z 2009-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#24763 0 Answer by Pete Kirkham for Preview should match the posted view Pete Kirkham 2009-10-06T17:28:29Z 2009-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#27680 0 Answer by Chris Johnsen for Preview should match the posted view Chris Johnsen 2009-10-29T08:56:49Z 2009-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>&lt;/kbd&gt; and &lt;kbd&gt;Shift&lt;/kbd&gt;-&lt;kbd&gt;Command&lt;/kbd&gt;-&lt;kbd&gt;\</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#29085 0 Answer by Arjan van Bentem for Preview should match the posted view Arjan van Bentem 2009-11-09T12:06:25Z 2009-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>&lt;/pre&gt;</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>&lt;/pre&gt;</code> is on a new line by itself, or if <em>all</em> closing <code>&lt;/pre&gt;</code>'s are on the last line of their <code>&lt;pre&gt;</code> blocks. But if the first closing <code>&lt;/pre&gt;</code> is at the end of the last line, then using a closing <code>&lt;/pre&gt;</code> on a new line somewhere later, messes up the text above it, a bit:</p> <p><hr></p> <pre>Some text in &lt;pre&gt;, closing &lt;/pre&gt; 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 &lt;pre&gt;, closing &lt;/pre&gt; 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#30162 0 Answer by jleedev for Preview should match the posted view jleedev 2009-11-18T05:01:34Z 2009-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>