Closed
Description
Hello, I find a few parsing issues in version: 0.16.4
input:
<button >
Hello <input type="file" ng-hide="true" />PostHtml
</button>
const output = posthtml().process(input, { sync: true })
output:
<button>
Hello </button><input type="file" ng-hide="true">PostHtml
expect
<button >
Hello <input type="file" ng-hide="true" />PostHtml
</button>