mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 01:26:18 +00:00
20 lines
762 B
Plaintext
20 lines
762 B
Plaintext
|
title: $:/plugins/tiddlywiki/consent-banner/youtube
|
||
|
tags: $:/tags/Macro
|
||
|
|
||
|
\define embed-video-with-consent(code)
|
||
|
<$reveal state="$:/state/consent-banner/accepted" type="match" text="yes" tag="div">
|
||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/$code$" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
|
||
|
</$reveal>
|
||
|
<$reveal state="$:/state/consent-banner/accepted" type="nomatch" text="yes" tag="div">
|
||
|
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/$code$" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
|
||
|
</$reveal>
|
||
|
\end
|
||
|
|
||
|
! Macro source
|
||
|
|
||
|
<$codeblock code={{$:/plugins/tiddlywiki/consent-banner/youtube}}/>
|
||
|
|
||
|
! Example
|
||
|
|
||
|
<<embed-video-with-consent KtCUr83XgyE>>
|