Overview
This page demonstrates all link and image patterns supported in Markdown/MDX content.
Link Types
Inline Links
- External link — links to an external site
- Internal link — links to another docs page
- Anchor link — links to a heading on this page
- Link with title — has a tooltip
Reference Links
Here is a paragraph with reference-style links and another one.
Autolinks
- Full URL: https://example.com
- Email: user@example.com
Links with Formatting
Images
Basic Image
Images in Markdown:

Image with Title

Linked Image
[](link-url)
External Link Behavior
External links in the framework:
- The
externalicon from the icon set can indicate external links - The
SocialIconscomponent opens all links in new tabs - The
EditLinkcomponent usestarget="_blank"andrel="noopener noreferrer"
Anchor Links (AnchorHeading)
Every heading on this page has an auto-generated anchor link. The AnchorHeading component:
- Wraps the heading content in a
<div>withrole="heading" - Adds an
idattribute for deep linking - Renders a hidden anchor icon that appears on hover
- The anchor label defaults to "Section titled [heading text]"
Props
| Prop | Type | Description |
|---|---|---|
level | number | Heading level (1-6) |
id | string | Anchor ID for deep linking |
html | string | Heading content as HTML string |
anchorLabel | string | Accessible label for the anchor link |