YouTube
Example
To display a YouTube video with this URL:
https://www.youtube.com/watch?v=0RKpf3rK57I
Include this in your Markdown:
{{< youtube 0RKpf3rK57I >}}
Hugo renders this to:
Arguments
- id
- (
string
) The videoid
. Optional if theid
is provided as a positional argument as shown in the example above. - allowFullScreen
- New in v0.125.0
- (
bool
) Whether theiframe
element can activate full screen mode. Default istrue
. - autoplay
- New in v0.125.0
- (
bool
) Whether to automatically play the video. Forcesmute
totrue
. Default isfalse
. - class
- (
string
) Theclass
attribute of the wrappingdiv
element. When specified, removes thestyle
attributes from theiframe
element and its wrappingdiv
element. - controls
- New in v0.125.0
- (
bool
) Whether to display the video controls. Default istrue
. - end
- New in v0.125.0
- (
int
) The time, measured in seconds from the start of the video, when the player should stop playing the video. - loading
- New in v0.125.0
- (
string
) The loading attribute of theiframe
element, eithereager
orlazy
. Default iseager
. - loop
- New in v0.125.0
- (
bool
) Whether to indefinitely repeat the video. Ignores thestart
andend
arguments after the first play. Default isfalse
. - mute
- New in v0.125.0
- (
bool
) Whether to mute the video. Alwaystrue
whenautoplay
istrue
. Default isfalse
. - start
- New in v0.125.0
- (
int
) The time, measured in seconds from the start of the video, when the player should start playing the video. - title
- (
string
) Thetitle
attribute of theiframe
element. Defaults to “YouTube video”.
Example using some of the above:
{{< youtube id=0RKpf3rK57I start=30 end=60 loading=lazy >}}
Privacy
Adjust the relevant privacy settings in your site configuration.
hugo.
privacy:
youTube:
disable: false
privacyEnhanced: false
[privacy]
[privacy.youTube]
disable = false
privacyEnhanced = false
{
"privacy": {
"youTube": {
"disable": false,
"privacyEnhanced": false
}
}
}
- disable
- (
bool
) Whether to disable the shortcode. Default isfalse
. - privacyEnhanced
- (
bool
) Whether to block YouTube from storing information about visitors on your website unless the user plays the embedded video. Default isfalse
.