Skip to content

Commit 264b5e7

Browse files
authored
Update changelog for v0.13.0 release (#113)
Add bug fix entries for heading nesting and HTML section depth.
1 parent d8a3dce commit 264b5e7

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## 0.13.0 (2026-05-11)
44
- [Breaking] Dropped Ruby 3.2 support. Minimum required Ruby version is now 3.3.
5+
- [Fix] **Heading Nesting in Normalize Mode** — Fixed `normalize_headings` producing incorrect heading levels when same-level headings are nested under a parent.
6+
- Consecutive same-level headings (e.g., two `##` headings) now correctly adjust the child's markdown level to be deeper than the parent's (e.g., `##``###`)
7+
- Effective level formula: `max(parent_effective_level + 1, original_level)`
8+
- ATX closing hashes (`## Title ##`) are now stripped from titles before building hierarchical paths
9+
- [Fix] **HTML-to-Markdown Section Nesting** — Headings inside nested `<section>` elements now receive adjusted markdown levels based on section nesting depth.
10+
- `<h2>` inside a nested `<section>` under another `<section>` with its own `<h2>` is now correctly rendered as `###` instead of `##`
511

612
## 0.12.0 (2025-11-12)
713
- [Feature] **HTML to Markdown Reverse Converter** — Added support for converting HTML content to markdown format.

0 commit comments

Comments
 (0)