1
2
3
4
5
6
7
8
9
10
11
12
export let xastscriptExample = (async () => {
const { x } = await import("npm:xastscript");
const { toXml } = await import("npm:xast-util-to-xml@4");
// Create a DOM tree
const tree = x("album", { id: 123 }, [
x("name", "Born in the U.S.A."),
x("artist", "Bruce Springsteen"),
x("releasedate", "1984-04-06"),
]);
// Encode it as an HTML string
return toXml(tree);
})();