Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.1.1 - 2026-06-16

- Sync the vendored `hangulang` core to its v2 conversion-fidelity work
(commit `1d36315`). No Python API or payload-schema changes — additive only,
so `schema_version` stays `hangulang.semantic.v1`.
- Hyperlinks now surface as `kind: "href"` inline nodes with a `uri` field in the
semantic payload (and `<href>` in DocLang XML, `[anchor](uri)` in Markdown).
- In-text flow objects (tables, pictures, formulas) are positioned at their true
character offset within ordinary paragraphs.
- Wider EqEdit→LaTeX symbol coverage; layout-failure and table-cell-collision
diagnostics surface through the loss report; OTSL grid size is capped.

## 0.1.0 - 2026-06-15

- Publish the initial Python/Rust package release for HWP/HWPX conversion.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hangulang-python"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT"
description = "PyO3 bindings for the hangulang document conversion engine"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "hangulang"
version = "0.1.0"
version = "0.1.1"
description = "Python bindings and integrations for the Rust hangulang document conversion engine"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion vendor/hangulang
Submodule hangulang updated 38 files
+18 −0 CHANGELOG.md
+6 −0 README.md
+67 −0 src/eqedit/latex.rs
+15 −2 src/eqedit/parser.rs
+4 −0 src/ir/inline.rs
+1 −1 src/lib.rs
+8 −0 src/markdown.rs
+147 −21 src/parser_adapter/control.rs
+46 −8 src/parser_adapter/geometry_pass.rs
+281 −36 src/parser_adapter/inline.rs
+9 −4 src/parser_adapter/mod.rs
+171 −44 src/parser_adapter/paragraph.rs
+58 −0 src/parser_adapter/table.rs
+16 −0 src/payload.rs
+33 −1 src/writer/inline.rs
+47 −0 src/writer/otsl.rs
+1 −1 tests/fixtures/golden/headerfooter__pic-in-head-01__hwp.lean.dclg.xml
+1 −1 tests/fixtures/golden/headerfooter__pic-in-head-01__hwp.preserve.dclg.xml
+55 −55 tests/fixtures/golden/headings__api-doc__hwp.lean.dclg.xml
+55 −55 tests/fixtures/golden/headings__api-doc__hwp.preserve.dclg.xml
+40 −40 tests/fixtures/golden/mixed__exam-math__hwp.lean.dclg.xml
+40 −40 tests/fixtures/golden/mixed__exam-math__hwp.preserve.dclg.xml
+1 −1 tests/fixtures/golden/mixed__exam-social__hwp.lean.dclg.xml
+1 −1 tests/fixtures/golden/mixed__exam-social__hwp.location.lean.dclg.xml
+1 −1 tests/fixtures/golden/mixed__exam-social__hwp.preserve.dclg.xml
+1 −1 tests/fixtures/golden/mixed__sub-superscript__hwp.lean.dclg.xml
+1 −1 tests/fixtures/golden/mixed__sub-superscript__hwp.preserve.dclg.xml
+1 −1 tests/fixtures/golden/pairs__test-image__hwp.lean.dclg.xml
+1 −1 tests/fixtures/golden/pairs__test-image__hwp.preserve.dclg.xml
+1 −1 tests/fixtures/golden/pairs__test-image__hwpx.lean.dclg.xml
+1 −1 tests/fixtures/golden/pairs__test-image__hwpx.preserve.dclg.xml
+2 −2 tests/fixtures/golden/pictures__hwp-img-001__hwp.lean.dclg.xml
+2 −2 tests/fixtures/golden/pictures__hwp-img-001__hwp.preserve.dclg.xml
+1 −1 tests/fixtures/golden/tables__inner-table-01__hwp.lean.dclg.xml
+1 −1 tests/fixtures/golden/tables__inner-table-01__hwp.preserve.dclg.xml
+1 −1 tests/fixtures/golden/tables__table-complex__hwp.lean.dclg.xml
+1 −1 tests/fixtures/golden/tables__table-complex__hwp.location.lean.dclg.xml
+1 −1 tests/fixtures/golden/tables__table-complex__hwp.preserve.dclg.xml
Loading