Problem/Motivation

First reported regression (section element):

 <section> tag gets removed and  gets pushed down out of the table tag.

CKEDITOR 5 markup input

<div>
 <section>
     <table><tr><td>test</td></tr></table>
 </section>
<div>

CKEDITOR 5 markup output (incorrect/unexpected)

<p>
    test tests
</p>
<table>
    <tbody>
        <tr>
            <td>
                test
            </td>
        </tr>
    </tbody>
</table>
<div>
    <div>
        &nbsp;
    </div>
</div>

Second regression reported: p tag added

CKEDITOR 5 markup input

<table>
  <tr>
    <th>xyz</th>
  </tr>
</table>

CKEDITOR 5 markup output (incorrect/unexpected)

<table>
<th><p>xyz</p></th>
</table>

Third regression reported: caption element vanishes.

<caption class="text-left">Priority Area Performance Measures – Table A</caption>
is changed to
Priority Area Performance Measures – Table A, that is the <caption class="text-left"> is removed by CKEditor.

Steps to reproduce

Install and configure this module

Proposed resolution

See patch or upgrade once committed

Remaining tasks

Review patch/upgrade

User interface changes

Just fixes

API changes

See code changes

Data model changes

None

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

joseph.olstad created an issue. See original summary.

  • joseph.olstad committed 73d4194b on 1.0.x
    fix: #3558602 section element and p tag regressions
    
    By: @joseph.olstad
    
joseph.olstad’s picture

Assigned: joseph.olstad » Unassigned
Status: Active » Fixed

Now that this issue is closed, review the contribution record.

As a contributor, attribute any organization that helped you, or if you volunteered your own time.

Maintainers, credit people who helped resolve this issue.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.