embeds.html 1.1 KB

123456789101112131415161718192021222324252627
  1. <p>This is an embed:</p>
  2. <iframe class="embed" src="https://www.youtube.com/watch?v=dQw4w9WgXcQ"></iframe>
  3. <p>So is this, with only three spaces of indentation:</p>
  4. <iframe class="embed" src="https://www.youtube.com/watch?v=dQw4w9WgXcQ"></iframe>
  5. <p>This is not, because it's fully indented:</p>
  6. <pre><code>https://www.youtube.com/watch?v=dQw4w9WgXcQ
  7. </code></pre>
  8. <p>This is not, because it has extra bits after the URL:</p>
  9. <p>https://www.youtube.com/watch?v=dQw4w9WgXcQ &lt;-- you gotta watch this!</p>
  10. <p>This is not, because it's in a fenced code block:</p>
  11. <pre><code class="language-md">
  12. https://www.youtube.com/watch?v=dQw4w9WgXcQ
  13. </code></pre>
  14. <p>And this isn't either because it's inline: <img src="https://www.youtube.com/watch?v=dQw4w9WgXcQ" alt="" /></p>
  15. <p>Embeds can't be nested in other blocks:</p>
  16. <ul>
  17. <li>https://www.youtube.com/watch?v=dQw4w9WgXcQ
  18. <ul>
  19. <li>https://www.youtube.com/watch?v=dQw4w9WgXcQ</li>
  20. </ul>
  21. </li>
  22. </ul>
  23. <p>This isn't valid because it's a lazy paragraph continuation:
  24. https://www.youtube.com/watch?v=dQw4w9WgXcQ</p>
  25. <iframe class="embed" src="https://www.youtube.com/watch?v=dQw4w9WgXcQ"></iframe>
  26. <p>^ This is fine, though</p>