Try doing a wee cleanup

This commit is contained in:
Nikolai Rodionov
2023-05-08 14:48:02 +02:00
parent ae45b107eb
commit aa788f30bc
212 changed files with 4923 additions and 15 deletions

View File

@ -0,0 +1 @@
{{ partial "remark42.html" . }}

View File

@ -0,0 +1,4 @@
<details>
<summary>{{ (.Get 0) | markdownify }}</summary>
{{ .Inner | markdownify }}
</details>

View File

@ -0,0 +1,2 @@
<!-- raw html -->
{{.Inner}}

View File

@ -0,0 +1,23 @@
<div class="container">
<div id="{{ .Get 1 }}" class="{{ .Get 1 }}" align=center></div>
</div>
<script
type="text/javascript"
src="https://s3.badhouseplants.net/badhouseplants-js/clappr/0.5.0/clappr.js"
>
</script>
<script>
var playerElement = document.getElementById("{{ .Get 1 }}");
var player = new Clappr.Player({
source: {{ .Get 0 }},
mute: true,
height: 360,
width: 640
});
player.attachTo(playerElement);
</script>