Add YouTube shortcode simple mode

Adapted from the work of @onedrawingperday.

See #4616
This commit is contained in:
Bjørn Erik Pedersen
2018-05-21 17:34:21 +02:00
parent 2f17f9378a
commit 88e3568680
5 changed files with 119 additions and 19 deletions

View File

@@ -76,8 +76,13 @@ type YouTube struct {
// When you turn on privacy-enhanced mode,
// YouTube wont store information about visitors on your website
// unless they play the video.
// unless the user plays the embedded video.
PrivacyEnhanced bool
// If simple mode is enabled, only a thumbnail is fetched from ytimg.com and
// shown with a play button overlaid. If a user clicks the button, he/she will
// be taken to the video page on youtube.com in a new browser tab.
Simple bool
}
func DecodeConfig(cfg config.Provider) (pc Config, err error) {