fix indentation of script/style tags
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M format_test.go → format_test.go
@@ -53,12 +53,12 @@ input: `test 123`, expected: `test 123` + "\n", }, { - name: "script tags are not formatted", + name: "script tags are only indented", input: `<script> var x = 1; </script>`, expected: `<script> - var x = 1; + var x = 1; </script>` + "\n", }, {