VERSION 1.13.0

v1.13.0

DITA-style relationship tables for automatic "Related topics" blocks across concept, task, reference, troubleshooting, and overview pages.

April 20, 2026
·5 changes

New Features

4 new additions

  • Relationship tables (reltable) — opt-in DITA-style relationship table at content/reltable.yml. Define related-topic groupings once using the five topic types (overview, concept, task, reference, troubleshooting), and the build pipeline emits a per-slug lookup that the new <RelatedTopics /> component consumes. Familiar to anyone with a structured-authoring background, ideal for maintaining bidirectional related links without editing every page

  • <RelatedTopics /> component — globally registered MDX component that auto-detects the current page, renders grouped "Related topics" sections in the order overview → concept → task → reference → troubleshooting, and hides empty sections gracefully. Props: title, slug (override), and showTypes (filter columns)

  • scripts/build-reltable.js — build step that reads content/reltable.yml, resolves each slug against content/docs/, warns on unresolved refs without failing the build, and emits public/reltable.json keyed by locale:version. Wired into npm run build. Missing reltable.yml is a silent no-op so the feature stays fully opt-in

  • Scaffolder template updates — new projects include a commented-out content/reltable.yml stub, the RelatedTopics component, and the build script pre-wired into the build script

Improvements

1 enhancements

  • Components documentation — added RelatedTopics guide covering the schema, authoring rules, multi-family examples, props, and i18n/versioning behavior. Components index and features.mdx updated to list the new component