Skip to content

v4.0.3

Choose a tag to compare

@github-actions github-actions released this 13 Jul 22:10

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#convert computes 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 _innerContent was 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