Add experimental Asciinema support

This commit is contained in:
Alex Shpak
2025-09-25 17:08:11 +02:00
parent 933206fedd
commit fe67dfeed1
9 changed files with 3966 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
(function() {
document.querySelectorAll(".asciinema").forEach(function(element) {
AsciinemaPlayer.create(element.getAttribute("x-data-cast"),
element,
JSON.parse(element.getAttribute("x-data-opts")));
});
}());
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long