/** * Markdown Module - Public API * * Pure Markdown table parsing/formatting functionality with no Excel dependencies. * For Markdown-Worksheet integration, use Workbook.readMarkdown/writeMarkdown methods instead. * * Design principles: * - Only export types and functions that are part of the PUBLIC API * - Internal utilities are used internally but not exported * - This reduces bundle size and simplifies the public interface */ export type { MarkdownAlignment, MarkdownParseResult, MarkdownParseOptions, MarkdownColumnConfig, MarkdownFormatOptions, MarkdownOptions } from "./types.js"; export { parseMarkdown, parseMarkdownAll } from "./parse/index.js"; export { formatMarkdown } from "./format/index.js"; export { MarkdownError, MarkdownParseError } from "./errors.js";