import { type dom } from "https://deno.land/x/evt@v2.4.16/lib/index.ts";
const { XSLTProcessor } = dom;
An XSLTProcessor applies an XSLT stylesheet transformation to an XML document to produce a new XML document as output. It has methods to load the XSLT stylesheet, to manipulate xsl:param parameter values, and to apply the transformation to documents.
Methods
importStylesheet(style: Node): void
transformToFragment(source: Node, document: Document): DocumentFragment