모두 파싱해버리겠다 — Parse any Korean document to Markdown.
HWP, HWPX, PDF — 대한민국 문서라면 남김없이 파싱해버립니다.
South Korea's government runs on HWP — a proprietary word processor the rest of the world has never heard of. Every day, 243 local governments and thousands of public institutions produce mountains of .hwp files. Extracting text from them has always been a nightmare: COM automation that only works on Windows, proprietary binary formats with zero documentation, and tables that break every existing parser.
kordoc was born from that document hell. Built by a Korean civil servant who spent 7 years buried under HWP files at a district office. One day he snapped — and decided to parse them all. Its parsers have been battle-tested across 5 real government projects, processing school curriculum plans, facility inspection reports, legal annexes, and municipal newsletters. If a Korean public servant wrote it, kordoc can parse it.
- HWP 5.x Binary Parsing — OLE2 container + record stream + UTF-16LE. No Hancom Office needed.
- HWPX ZIP Parsing — OPF manifest resolution, multi-section, nested tables.
- PDF Text Extraction — Y-coordinate line grouping, table reconstruction, image PDF detection.
- 2-Pass Table Builder — Correct
colSpan/rowSpanvia grid algorithm. No broken tables. - Broken ZIP Recovery — Corrupted HWPX? Scans raw Local File Headers.
- 3 Interfaces — npm library, CLI tool, and MCP server (Claude/Cursor).
- Cross-Platform — Pure JavaScript. Runs on Linux, macOS, Windows.
| Format | Engine | Features |
|---|---|---|
| HWPX (한컴 2020+) | ZIP + XML DOM | Manifest, nested tables, merged cells, broken ZIP recovery |
| HWP 5.x (한컴 레거시) | OLE2 + CFB | 21 control chars, zlib decompression, DRM detection |
| pdfjs-dist | Line grouping, table detection, image PDF warning |
npm install kordoc
# PDF support requires pdfjs-dist (optional peer dependency)
npm install pdfjs-dist
pdfjs-distis an optional peer dependency. Not needed for HWP/HWPX parsing.
import { parse } from "kordoc" import { readFileSync } from "fs" const buffer = readFileSync("document.hwpx") const result = await parse(buffer.buffer) if (result.success) { console.log(result.markdown) }
import { parseHwpx, parseHwp, parsePdf } from "kordoc" const hwpxResult = await parseHwpx(buffer) // HWPX const hwpResult = await parseHwp(buffer) // HWP 5.x const pdfResult = await parsePdf(buffer) // PDF
import { detectFormat } from "kordoc" detectFormat(buffer) // → "hwpx" | "hwp" | "pdf" | "unknown"
npx kordoc document.hwpx # stdout npx kordoc document.hwp -o output.md # save to file npx kordoc *.pdf -d ./converted/ # batch convert npx kordoc report.hwpx --format json # JSON with metadata
Works with Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.
{
"mcpServers": {
"kordoc": {
"command": "npx",
"args": ["-y", "kordoc-mcp"]
}
}
}Tools exposed:
| Tool | Description |
|---|---|
parse_document |
Parse HWP/HWPX/PDF file → Markdown |
detect_format |
Detect file format via magic bytes |
Auto-detects format and converts to Markdown.
interface ParseResult { success: boolean markdown?: string fileType: "hwpx" | "hwp" | "pdf" | "unknown" isImageBased?: boolean // scanned PDF detection pageCount?: number // PDF only error?: string }
import type { ParseResult, ParseSuccess, ParseFailure, FileType } from "kordoc"
Internal types (
IRBlock,IRTable,IRCell,CellContext) and utilities (KordocError,sanitizeError,isPathTraversal,buildTable,blocksToMarkdown) are not part of the public API.
- Node.js >= 18
- pdfjs-dist >= 4.0.0 — Optional. Only needed for PDF. HWP/HWPX work without it.
Production-grade security hardening:
- ZIP bomb protection — Entry count validation, 100MB decompression limit, 500 entry cap
Known limitation: Pre-check reads declared sizes from ZIP Central Directory, which an attacker can falsify. The primary defense is per-file cumulative size tracking during actual decompression. For fully untrusted input where streaming decompression is required, consider wrapping kordoc behind a size-limited sandbox.
- XXE/Billion Laughs prevention — Internal DTD subsets fully stripped from HWPX XML
- Decompression bomb guard —
maxOutputLengthon HWP5 zlib streams, cumulative 100MB limit across sections - PDF resource limits — MAX_PAGES=5,000, cumulative text size 100MB cap,
doc.destroy()cleanup - HWP5 record cap — Max 500,000 records per section, prevents memory exhaustion from crafted files
- Table dimension clamping — rows/cols read from HWP5 binary clamped to MAX_ROWS/MAX_COLS before allocation
- colSpan/rowSpan clamping — Crafted merge values clamped to grid bounds (MAX_COLS=200, MAX_ROWS=10,000)
- Path traversal guard — Backslash normalization,
.., absolute paths, Windows drive letters all rejected - MCP error sanitization — Allowlist-based error filtering, unknown errors return generic message
- MCP path restriction — Only
.hwp,.hwpx,.pdfextensions allowed, symlink resolution - File size limit — 500MB max in MCP server and CLI
- HWP5 section limit — Max 100 sections in both primary and fallback paths
- HWP5 control char fix — Character code 10 (footnote/endnote) now correctly handled
┌─────────────┐ Magic Bytes ┌──────────────────┐
│ File Input │ ──── Detection ────→ │ Format Router │
└─────────────┘ └────────┬─────────┘
│
┌──────────────────────────┼──────────────────────────┐
│ │ │
┌─────▼─────┐ ┌───────▼───────┐ ┌──────▼──────┐
│ HWPX │ │ HWP 5.x │ │ PDF │
│ ZIP+XML │ │ OLE2+Record │ │ pdfjs-dist │
└─────┬─────┘ └───────┬───────┘ └──────┬──────┘
│ │ │
│ ┌──────────────────┤ │
│ │ �� │
┌─────▼───────▼─────┐ │ │
│ 2-Pass Table │ │ │
│ Builder (Grid) │ │ │
└─────────┬─────────┘ │ │
│ │ │
┌─────▼──────────────────────▼──────────────────────────▼─────┐
│ IRBlock[] │
│ (Intermediate Representation) │
└────────────────────────┬───────────────────────────────────┘
│
┌──────▼──────┐
│ Markdown │
│ Output │
└─────────────┘
Production-tested across 5 Korean government technology projects:
- School curriculum plans (학교교육과정)
- Facility inspection reports (사전기획 보고서)
- Legal document annexes (법률 별표)
- Municipal newsletters (소식지)
- Public data extraction tools (공공데이터)
Thousands of real government documents parsed without breaking a sweat.