htmlfilemerger
htmlfilemerger copied to clipboard
`<!DOCTYPE html>` is stripped from the top of the output file
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!