documentation/guides/docs/components/embeds.md
Embeds allow you to include external content from various platforms directly in your documentation. They support YouTube videos, Vimeo videos, CodePen demos, CodeSandbox projects, and other iframe-compatible content. Each embed automatically optimizes the source URL and includes proper security attributes.
string required
The URL of the content to embed. The component automatically detects and optimizes URLs for supported platforms:
string optional
A descriptive caption for the embedded content. This appears below the embed and provides context or explanation.
string optional
Alternative text for accessibility. This describes the embedded content for screen readers and other assistive technologies.
<scalar-embed src="https://www.youtube.com/watch?v=dQw4w9WgXcQ" caption="Never Gonna Give You Up - Rick Astley"> </scalar-embed>
<scalar-embed
src="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
caption="Never Gonna Give You Up - Rick Astley">
</scalar-embed>
::scalar-embed{ src="https://www.youtube.com/watch?v=dQw4w9WgXcQ" caption="Never Gonna Give You Up - Rick Astley"}
::scalar-embed{ src="https://www.youtube.com/watch?v=dQw4w9WgXcQ" caption="Never Gonna Give You Up - Rick Astley"}
<scalar-embed src="https://vimeo.com/844557780" caption="Beautiful nature documentary"> </scalar-embed>
<scalar-embed
src="https://vimeo.com/844557780"
caption="Beautiful nature documentary">
</scalar-embed>
::scalar-embed{ src="https://vimeo.com/844557780" caption="Never Gonna Give You Up - Rick Astley"}
::scalar-embed{ src="https://www.youtube.com/watch?v=dQw4w9WgXcQ" caption="Beautiful nature documentary"}
<scalar-embed src="https://en.wikipedia.org/wiki/Open_source" caption="Custom interactive content" alt="Interactive demonstration of the API"> </scalar-embed>
<scalar-embed
src="https://en.wikipedia.org/wiki/Open_source"
caption="Custom interactive content"
alt="Interactive demonstration of the API">
</scalar-embed>
::scalar-embed{ src="https://en.wikipedia.org/wiki/Open_source" caption="Custom interactive content" alt="Interactive demonstration of the API"}
::scalar-embed{ src="https://en.wikipedia.org/wiki/Open_source" caption="Custom interactive content" alt="Interactive demonstration of the API"}