I would expect the following to display a red circle but it does not. When I inspect the cell output in the element inspector, it shows the correct SVG.
The problem is that the html tagged template literal doesnât know you are trying to create an svg:circle, and so creates an xhtml:circle element (an HTMLUnknownElement), the same way it would if you tried to create a circle element outside of an SVG in literal HTML:
Ahh! Thank you Mike, that worked, I was unaware of the difference, I see that now it creates an SVGCircleElement instead of a HTMLUnknownElement, thank you for rapid help!