I can make use of the following code, {{< youtube hvWSg6NblSU >}}
to embed the YouTube video in hugo website, where hvWSg6NblSU is the value in following url: https://www.youtube.com/watch?v=hvWSg6NblSU
Instead of embedding a single video, I want to embed the following playlist: https://www.youtube.com/playlist?list=PLDe3_HhjV1foHQbtGpdo0FSmsMrVykuKJ
Question: Is there a way I can embed the above playlist. Basically I am trying to make a page using hugo which will show the playlist on YouTube.
In the following link: https://naresh-chaurasia.github.io/talk2naresh/course/python-kids/, I have a single YouTube video but want to add link to entire playlist using hugo. Is it possible.
Although I can create a hyperlink to the playlist, but I want to display the YouTube playlist.
Thanks.
It is not supported by the built-in youtube shortcode.
What you can do is create a new youtube shortcode for playlists.
Steps
/layouts/shortcodes/youtubepl.html
(aside: If you prefer to have a different shortcode name, simply change the filename. For example, if you prefer to use
{{< ytplaylist >}}
change the shortcode filename toytplaylist.html
.)Usage
{{< youtube >}}
shortcode, just use the new shortcode name like so:{{< youtubepl id="ID-HERE" >}}
or{{< youtubepl ID-HERE >}}
.