/** * DOCX Module - HTML Converters (Subpath Export) * * Import separately to avoid pulling converter code into the bundle * when only core document building is needed. * * @example * ```ts * import { renderToHtml, htmlToDocxBody } from "excelts/word/html"; * ``` */ export { renderToHtml } from "./html-renderer.js"; export type { HtmlRenderOptions, HtmlRenderResult } from "./html-renderer.js"; export { htmlToDocxBody, htmlToDocx } from "./html-import.js"; export type { HtmlImportOptions, HtmlToDocxResult } from "./html-import.js";