Embedding YouTube video
Goal
Seamlessly embed YouTube videos in notes, ensuring compatibility with digital garden plugin.
Maintain the proper aspect ratio for embedded videos in display
Solution
Add following CSS snippet to the vault.
iframe {
height: auto;
width: 100%;
aspect-ratio: 16 / 9;
}