Files
libertytoolsio/themes/hugo-book/static/asciinema/asciinema-auto.js

7 lines
226 B
JavaScript
Raw Normal View History

2026-04-24 14:36:57 -06:00
(function() {
document.querySelectorAll(".asciinema").forEach(function(element) {
AsciinemaPlayer.create(element.getAttribute("x-data-cast"),
element,
JSON.parse(element.getAttribute("x-data-opts")));
});
}());