title | description |
---|---|
Custom Embeds |
Images, videos, and any HTML elements |
Mintlify supports HTML tags in Markdown. This is helpful if you prefer HTML tags to Markdown syntax, and lets you create documentation with infinite flexibility.
Here are some common HTML tags that are used for documentation
Loads another HTML page within the document. Most commonly used for embedding videos.
<iframe src="https://www.youtube.com/embed/4KzFe50RQkQ"> </iframe>
To have videos autoplay, add autoplay = {true}
.
Insert an image onto the page. Used over the standard markdown image syntax for more control over the image styling.
<img style={{height: "200px"}} src="/path/image.jpg" />
Add a linebreak
<br />