mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-09 03:19:56 +00:00
542372c722
Hopefully fixes #1547
16 lines
353 B
Plaintext
16 lines
353 B
Plaintext
title: $:/core/macros/youtube
|
|
tags: $:/tags/Macro
|
|
|
|
\define youtube-thumbnail(link,width:"280",height:"157",image)
|
|
<$link to="""$link$""">
|
|
<div class="tc-youtube-wrapper">
|
|
<div class="tc-youtube-thumbnail">
|
|
[img width="$width$" height="$height$" [$image$]]
|
|
</div>
|
|
<div class="tc-youtube-play-symbol">
|
|
{{$:/core/images/video}}
|
|
</div>
|
|
</div>
|
|
</$link>
|
|
\end
|