Does this formatter mdx route run entirely in browser?
Yes. The formatter runs in browser so pasted code or styles stay local while you review and copy the result.
Format MDX in browser with the shared formatter adapter layer so Markdown, JSX, and exported components become readable without leaving the page.
# Release Notes
export const Alert = ({ items }) => <section data-owner="Ada" data-status="ready">{items.join(", ")}</section>
<Alert items={["Ready","Review"]} />
# Release Notes
export const Alert = ({ items }) => (
<section data-owner="Ada" data-status="ready">
{items.join(", ")}
</section>
);
<Alert items={["Ready", "Review"]} />
Yes. The formatter runs in browser so pasted code or styles stay local while you review and copy the result.
Yes. After formatting, the result stays in the shared output workspace so you can inspect and copy it immediately.