htmlfilemerger icon indicating copy to clipboard operation
htmlfilemerger copied to clipboard

`<!DOCTYPE html>` is stripped from the top of the output file

Open bensie opened this issue 1 year ago • 0 comments

Given the following file input.html:

<!DOCTYPE html>
<html>
</html>

python3 -m htmlmerger input.html output.html

output.html contains the following - there's a blank line where <!DOCTYPE html> was in the input.


<html>
</html>

Great tool. Thank you!

bensie avatar Oct 01 '23 15:10 bensie