v4.0.3
Summary
Release meta
Released on: 2026-07-13
Released by: github-actions[bot]
Published by: GitHub
Logs: full diff
Changelog
Bug Fixes
- Fix AsciiDoc table cells (
a) losing their content when they belong to a table that is itself nested inside another AsciiDoc cell — the deeper cells rendered as an empty<div class="content"></div>(text became invisible).Document#convertcomputes each AsciiDoc cell’s inner content in_convertAsciiDocCells, but that pass only ran on the root document (guarded by!parentDocument) and, when it converted an AsciiDoc cell’s inner document, never recursed into the tables inside that inner document. So a nested table’s own AsciiDoc cells were rendered before their_innerContentwas ever set. The pass now recurses into a cell’s inner document before rendering it, so AsciiDoc cells at any nesting depth have their content computed first