How to
Embed Youtube Spotify

Embed YouTube, Spotify or any iframe

Since Quotion supports markdown out of box, you can also embed many popular services into your post directly, as long as there is an iframe code. All you need is paste the code into your note, Quotion will render it properly.

Here are some most popular examples:

YouTube

<!-- You can find the embed code when sharing the video -->
<iframe
  width="560"
  height="315"
  src="https://www.youtube.com/embed/Qw1OSKGVeIQ?si=WvXs-YTySSnbUVgI"
  title="YouTube video player"
  frameborder="0"
  allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
  allowfullscreen
></iframe>

It's rendered as below:

Spotify

<!-- You can find the embed code by sharing the embed track -->
<iframe
  style="border-radius:12px"
  src="https://open.spotify.com/embed/track/7MXVkk9YMctZqd1Srtv4MB?utm_source=generator"
  width="100%"
  height="352"
  frameborder="0"
  allowfullscreen=""
  allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"
  loading="lazy"
></iframe>