Files
docker-docs/layouts/_default/_markup/render-codeblock.html
David Karlsson a0d21ade2f migrate to hugo
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
2023-08-22 09:41:02 +02:00

14 lines
506 B
HTML

<div class="group relative">
<button
x-data="{ code: '{{ strings.ReplaceRE `(?sm)\s*^\$\s+` `` .Inner | base64Encode }}' }"
class="material-symbols-rounded hidden group-hover:block absolute top-3 right-3 text-gray-light-300 dark:text-gray-dark-600"
title="Copy"
@click="window.navigator.clipboard.writeText(atob(code));
$el.textContent='check_circle';
setTimeout(() => $el.textContent='content_copy', 2000);"
>
content_copy
</button>
{{ highlight .Inner .Type }}
</div>