mirror of
https://github.com/jaandrle/deka-dom-el
synced 2024-11-22 16:55:23 +01:00
12 lines
557 B
JavaScript
12 lines
557 B
JavaScript
import { elNS, assign } from "../../../index-with-signals.js";
|
|
const elSVG= elNS("http://www.w3.org/2000/svg");
|
|
const elMath= elNS("http://www.w3.org/1998/Math/MathML");
|
|
document.body.append(
|
|
elSVG("svg"), // see https://developer.mozilla.org/en-US/docs/Web/SVG and https://developer.mozilla.org/en-US/docs/Web/API/SVGElement
|
|
elMath("math") // see https://developer.mozilla.org/en-US/docs/Web/MathML and https://developer.mozilla.org/en-US/docs/Web/MathML/Global_attributes
|
|
);
|
|
|
|
console.log(
|
|
document.body.innerHTML.includes("<svg></svg><math></math>")
|
|
)
|