Details

    • Bug
    • Resolution: Duplicate
    • Blocker
    • None
    • 1.35
    • None
    • Unknown

    Description

      Try entering this code into the Code Macro

      <html>
      <body>
      <div class="assasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfasassasafasfas"></div>
      </body>
      </html>
      

      When viewing the page or when editing the wiki syntax the internal div is lost.

      {{code language="css" layout="LINE_NUM"}}
      <html>
      <body></body>
      </html>
      {{/code}}
      

      Doesn't matter the language or the layout options.

      Attachments

        Issue Links

          Activity

            [CKEDITOR-302] Losing content added in the code macro

            The long CSS class name is not relevant. You can reproduce the issue with:

            {{code language="none"}}
            <html><body><div/></body></html>
            {{/code}}
            

            The issue is in the CKEditor code, here https://github.com/ckeditor/ckeditor-dev/blob/4.11.4/core/editable.js#L815 . When the ignoreEmptyParagraph configuration option is on (which is the default) then CKEditor removes empty "paragraphs" (it actually removes empty DIVs also, here "paragraph" is taken semantically). Unfortunately it does this using a regular expression which matches HTML inside comments, like the one used to mark the macro output:

            <!--startmacro:code|-|language="none"|-|<html><body><div/></body></html>-->
            

            The root issue is that the HTML is not encoded in the macro markers comments. This makes it a duplicate of CKEDITOR-100. HTML special characters don't have to be encoded inside comments but it would prevent multiple issues with CKEditor. Changing this on the Rendering side is not easy because it breaks backward compatibility.

            mflorea Marius Dumitru Florea added a comment - The long CSS class name is not relevant. You can reproduce the issue with: {{code language="none"}} <html><body><div/></body></html> {{/code}} The issue is in the CKEditor code, here https://github.com/ckeditor/ckeditor-dev/blob/4.11.4/core/editable.js#L815 . When the ignoreEmptyParagraph configuration option is on (which is the default) then CKEditor removes empty "paragraphs" (it actually removes empty DIVs also, here "paragraph" is taken semantically). Unfortunately it does this using a regular expression which matches HTML inside comments, like the one used to mark the macro output: <!--startmacro:code|-|language="none"|-|<html><body><div/></body></html>--> The root issue is that the HTML is not encoded in the macro markers comments. This makes it a duplicate of CKEDITOR-100 . HTML special characters don't have to be encoded inside comments but it would prevent multiple issues with CKEditor. Changing this on the Rendering side is not easy because it breaks backward compatibility.
            surli Simon Urli added a comment -

            mflorea might be easier for you to debug this one. AFAICS the div is removed inside CKEditor code. I did not manage to catch a call to the html parser that would explain it. And I don't really know how to debug JS code of CKEditor.

            surli Simon Urli added a comment - mflorea might be easier for you to debug this one. AFAICS the div is removed inside CKEditor code. I did not manage to catch a call to the html parser that would explain it. And I don't really know how to debug JS code of CKEditor.
            tmortagne Thomas Mortagne added a comment - - edited

            When viewing the page or when editing the wiki syntax the internal div is lost.

            This suggest it's a WYSIWYG bug and not a code macro one.

            Moving it to the CKEditor project until the cause is found. Could also be a bug in the html parser I guess.

            tmortagne Thomas Mortagne added a comment - - edited When viewing the page or when editing the wiki syntax the internal div is lost. This suggest it's a WYSIWYG bug and not a code macro one. Moving it to the CKEditor project until the cause is found. Could also be a bug in the html parser I guess.

            Did you try without the line number layout ?

            tmortagne Thomas Mortagne added a comment - Did you try without the line number layout ?

            People

              mflorea Marius Dumitru Florea
              evalica Ecaterina Moraru (Valica)
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: