Anchor
Use the <Anchor> component to create links to specific paragraphs, tables, and other sections of content that don’t have headings. Wrap your content with the <Anchor> tag and assign it a custom anchor ID, which you can link to in URLs using the hash symbol (example: https://website.com/page#data).
Headings automatically generate anchor links based on their text content, so you don’t need to use the <Anchor> component for headings.
Basic anchor
Markdown
This sentence has a custom anchor
You can link to it using #data in the URL.
Anchor a table
Markdown
You can link directly to the API endpoints table.
Anchor a Code Block
Markdown
Reference the authentication code example in your implementation.
Properties
id
The anchor ID for this content. Reference it in URLs using the hash (example: #data)