Issues identified during migration from Document360 to Docusaurus that need manual review.
Some tables had formatting problems from the Document360 migration.
Scan results: All docs scanned for HTML tables, empty header cells, and malformed markdown tables.
Fixed:
docs/build/native-blueprints/locker.md— 10 verbose HTML tables (each ~130 lines) compacted to matchpool.mdformat (~15 lines each). Added missing</table>closing tags and<tbody>wrappers.docs/reference/sbor/sbor-value-model.mdline 71 — "Map" row was missing its label/description in the Composite Value Kinds table. Added description to match Array/Tuple/Enum rows.
No fix needed (intentional patterns):
docs/build/native-blueprints/pool.mdlines 80–88 — Role/permissions table with blank first column header (row labels in first column). Renders correctly.docs/build/native-blueprints/pool.mdlines 378–385, 393–400 — Key-value API tables with empty header rows. Deliberate documentation pattern for method reference.docs/reference/concepts/environments.mdline 55 —<br/>tags inside table cell for line breaks between list items. Valid HTML, renders correctly.
Numbered lists and bullet points were collapsed onto single lines during the Gitbook export, with \* used inline instead of proper markdown list syntax. This causes them to render as a wall of text.
How to find: Search for lines longer than ~300 characters containing \* or 1. inline patterns.
Scan results: All docs scanned for lines >300 chars with inline list patterns. Only real issues found and fixed below.
Fixed:
docs/build/dapp-transactions/pre-authorizations-subintents.md— four sections fixed (Pre-authorization Flow, Delegated Fees, User Badge Deposit, Co-ordinated ticket purchase)docs/reference/concepts/addresses.mdline 22 — numbered list (Entity Byte / Address Bytes) collapsed onto single linedocs/reference/concepts/index.mdline 22 — same content, same fix
False positives (no fix needed):
docs/build/dapp-development/dapp-definition-setup.mdline 38 — properly formatted sub-item, just a long sentencedocs/build/dapp-transactions/pre-authorizations-subintents.mdlines 42, 48, 49 — properly structured bullets, just naturally long content
Document360 uses collapsible/accordion sections (e.g., <details>/<summary> or custom markup). These were lost during migration and need to be re-added manually using Docusaurus-compatible syntax.
Docusaurus syntax:
<details>
<summary>Click to expand</summary>
Content goes here.
</details>How to find: Compare pages with the original at https://docs.radixdlt.com/ — look for sections that were hidden behind "expand" or "show more" toggles on the original site but appear as flat content (or are missing entirely) in the current docs.