vite-plugin-html-env icon indicating copy to clipboard operation
vite-plugin-html-env copied to clipboard

Heading elements are being malformed - number is removed

Open mattgreenfield opened this issue 2 years ago • 1 comments

Plugin version: "1.2.7"

My.html file contains heading elements:

<h1>hello</h1>
<h2>world</h2>

But after running this plugin, the output is missing the heading numbers

<h>hello</h>
<h>world</h>

mattgreenfield avatar Nov 04 '22 10:11 mattgreenfield

Setting compiler: false, fixes this issue

mattgreenfield avatar Nov 04 '22 10:11 mattgreenfield