Post Made Community Wiki by Community
show/hide this revision's text 7 added 686 characters in body

This looks like a bug in I.E.IE, although your results will vary depending on where you BR tags inside the PRE or CODE are pasting not being converted into newlines in the codeplain text copy buffer. The application you are currently pasting it into rich text copy buffer is expecting a CR + LF combination (carriage return and line feedfine, a standard windows format). Unix machines use just the LF and it appears that's what you're getting since Notepad doesn't have so the new lines but paste works as expected for applications like wordpaddoes.

Note: I.E.is copying from

The prettify script, that colours the generated codeafter , removes all the print pretty script has been at whitespace and replaces it with HTML tags for spaces and new lines. The generated code looks something like this:

The PRE and CODE tags are rendered by defaults with the CSS style of {whitespace: pre}. In this case, IE is turning failing to turn the <br/> BR tags into just Line Feeds, which is weirdnewlines. It works fine if would work on your original HTML because IE will successfully turn actual newlines into newlines.

In order to fix it you do eitherhave 3 options. (I am presuming you want nice HTML and the ability to work well with and without javascript enabled on the client):

or

There is something about putting

  • You could place the <br/> code inside a <pre> that normal div and use CSS to render it using {whitespace: pre}. This is causing a simple solution, although might not please an HTML markup purist.

  • You could have two copies of the problemcode, one using proper PRE / CODE tags and another in a normal div.

    Note: with both In your CSS you hide the newlines normal div. Using javascript you prettify the normal div and <br/> it renders double spaced

    I guess hide the solution is pre/code version.

  • Modify the prettify script to just use <code> recognise that it is acting on a PRE or CODE element and to not wrap it replace the whitespace in a <pre>, since that event.

  • Notes:

  • What is important is not the HTML in your source, but the HTML that is generated after the prettify script has ran on it.

  • This bug is getting rid of still present even if the <code>, but leaving white-space mode of the <pre>.PRE is changed to normal using CSS.

  • show/hide this revision's text 6 added 6 characters in body

    This looks like a bug in I.E., although your results will vary depending on where you are pasting the code.

    The application you are currently pasting it into is expecting a CR + LF combination (carriage return and line feed, a standard windows format). Unix machines use just the LF and it appears that's what you're getting since Notepad doesn't have the new lines but wordpad does.

    Note: I.E. is copying from the generated code after the print pretty script has been at it. The generated code looks something like this:

    <pre>code<br/>    code<br/>    code<br/>code<pre/> 
    

    <pre>code<br/>&nbsp;&nbsp;code<br/>&nbsp;&nbsp;code<br/>code<pre/> 
    

    In this case IE is turning the <br/> tags into just Line Feeds, which is weird.

    It works fine if you do either:

    <pre>
    code
        code
        code
    code
    <pre/> 
    

    or

    code<br/>    

    code<br/>    code<br/>code
    <br/>&nbsp;&nbsp;code<br/>&nbsp;&nbsp;code<br/>code
    

    There is something about putting the <br/> inside a <pre> that is causing the problem.

    Notes

    Note:

    • without the <pre> the spacing doesn't work.with both the newlines and <br/> it renders double spaced

    It seems that

    I guess the only solution is to keep the <pre> tag and just use newlines instead of <br/>, which will mean modifying <code> and not wrap it in a <pre>, since the prettify script .is getting rid of the <code>, but leaving the <pre>.

    show/hide this revision's text 5 added 743 characters in body
    show/hide this revision's text 4 added 60 characters in body
    show/hide this revision's text 3 added 27 characters in body
    show/hide this revision's text 2 added 169 characters in body
    show/hide this revision's text 1