htmlwriter.js 390 B

123456789101112131415161718
  1. /**
  2. * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. /**
  6. * HTML writer interface.
  7. *
  8. * @interface engine.dataProcessor.HtmlWriter
  9. */
  10. /**
  11. * Returns HTML string created from DocumentFragment.
  12. *
  13. * @method engine.dataProcessor.HtmlWriter#getHtml
  14. * @param {DocumentFragment} fragment
  15. * @returns {String}
  16. */