/** * DOCX Module - Markdown Converters (Subpath Export) * * Import separately to avoid pulling renderer code into the bundle * when only core document building is needed. * * @example * ```ts * import { renderToMarkdown, markdownToDocx, markdownToDocxBody } from "excelts/word/markdown"; * ``` */ export { renderToMarkdown } from "./markdown-renderer.js"; export type { MarkdownRenderOptions } from "./markdown-renderer.js"; export { markdownToDocx, markdownToDocxBody } from "./markdown-import.js"; export type { MarkdownImportOptions, MarkdownImageData, MarkdownBodyResult } from "./markdown-import.js";