瀏覽代碼

Fix code sample indentation of the injectTableCellPostFixer.

Maciej Gołaszewski 6 年之前
父節點
當前提交
454c0e1fad
共有 1 個文件被更改,包括 10 次插入10 次删除
  1. 10 10
      packages/ckeditor5-table/src/converters/table-cell-content-post-fixer.js

+ 10 - 10
packages/ckeditor5-table/src/converters/table-cell-content-post-fixer.js

@@ -15,19 +15,19 @@
  *
  * A table cells must contains at least one block as a child. The empty table cell will have empty `<paragraph>` as a child.
  *
- *        <table>
- *            <tableRow>
- *                <tableCell></tableCell>
- *            </tableRow>
- *        </table>
+ *		<table>
+ *			<tableRow>
+ *				<tableCell></tableCell>
+ *			</tableRow>
+ *		</table>
  *
  * Will be fixed to:
  *
- *        <table>
- *            <tableRow>
- *                <tableCell><paragraph></paragraph></tableCell>
- *            </tableRow>
- *        </table>
+ *		<table>
+ *			<tableRow>
+ *				<tableCell><paragraph></paragraph></tableCell>
+ *			</tableRow>
+ *		</table>
  *
  * @param {module:engine/model/model~Model} model
  */