UNPKG

@ckeditor/ckeditor5-engine

Version:

The editing engine of CKEditor 5 – the best browser-based rich text editor.

23 lines (22 loc) 739 B
/** * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ import { global } from '@ckeditor/ckeditor5-utils'; /** * Basic HTML writer. It uses the native `innerHTML` property for basic conversion * from a document fragment to an HTML string. * * @internal */ export class BasicHtmlWriter { /** * Returns an HTML string created from the document fragment. */ getHtml(fragment) { const doc = global.document.implementation.createHTMLDocument(''); const container = doc.createElement('div'); container.appendChild(fragment); return container.innerHTML; } }