You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`scripts/mdx-to-md.mjs`|**The transformer.** Exports `transformMdx()` + parsing helpers and `COMPONENT_REGISTRY`. Zero-dependency ES module. |
70
70
|`scripts/component-handlers/data-tables.mjs`| Handler for `<JsonTable>` — resolves a `static/json/*.json` file into a Markdown table. |
71
71
|`scripts/component-handlers/integrations.mjs`| Handler for `<IntegrationsGrid>` — reads `src/components/IntegrationsGrid/integrations-data.json`, filters by the `defaultSdks` prop, and emits a Markdown list. |
72
-
|`scripts/component-handlers/home-page-hero.mjs`| Handler for `<HomePageHero>`— emits the homepage hero's headline, intro, and link cards. Content is mirrored from the component (no shared data file). |
72
+
|`scripts/component-handlers/hero.mjs`| Handler for the homepage hero cards (`<ActionCard>`/ `<CommunityCard>`) — parses `title`/`href` props and children into a Markdown link-list item. Copy lives in `docs/index.mdx`; layout wrappers strip generically. |
73
73
|`scripts/component-handlers/cards.mjs`| Handler for `<QuickstartCards>` / `<PatternCards>` — parses the inline `items={[{href,title,description}]}` prop into a Markdown link list. |
74
74
|`scripts/audit-components.mjs`| Inventory/coverage tool. Scans all docs, reports per-component coverage, writes `COMPONENT_REGISTRY.md` at the repo root. |
75
75
|`src/components/LLMActions/LLMActions.tsx`| On-page actions (Copy, View as Markdown, Open in ChatGPT/Claude). Points at the generated `/<path>.md` (not the raw MDX). |
@@ -118,7 +118,8 @@ Each component maps to a strategy in `COMPONENT_REGISTRY` (in `scripts/mdx-to-md
118
118
|`SetupSteps` / `SetupStep`|`setup-steps` / `setup-step`| Prose children plus code extracted from the `code={…}` JSX prop |
119
119
|`JsonTable`|`json-table`| Markdown table resolved from the referenced `static/json/*.json`|
120
120
|`IntegrationsGrid`|`integrations-grid`| Markdown list resolved from `integrations-data.json`, filtered by the `defaultSdks` prop |
121
-
|`HomePageHero`|`home-page-hero`| Homepage hero's headline, intro paragraphs, and link cards (content mirrored from the component) |
0 commit comments