aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/html/script_style.html
diff options
context:
space:
mode:
authorPham Huy Hoang <hoangtun0810@gmail.com>2023-01-02 16:28:40 +0900
committerStephan Seitz <stephan.seitz@fau.de>2023-01-03 17:50:44 +0100
commit8c71c6c5edfa447aaa867858e2e913340ea964b7 (patch)
treee24da0f1a295b3d79de7df3c1fd452510c67acb0 /tests/indent/html/script_style.html
parentrefactor(svelte): Remove duplicated queries (diff)
downloadnvim-treesitter-8c71c6c5edfa447aaa867858e2e913340ea964b7.tar
nvim-treesitter-8c71c6c5edfa447aaa867858e2e913340ea964b7.tar.gz
nvim-treesitter-8c71c6c5edfa447aaa867858e2e913340ea964b7.tar.bz2
nvim-treesitter-8c71c6c5edfa447aaa867858e2e913340ea964b7.tar.lz
nvim-treesitter-8c71c6c5edfa447aaa867858e2e913340ea964b7.tar.xz
nvim-treesitter-8c71c6c5edfa447aaa867858e2e913340ea964b7.tar.zst
nvim-treesitter-8c71c6c5edfa447aaa867858e2e913340ea964b7.zip
fix(html): fix wrong indents for script/style tags
Diffstat (limited to 'tests/indent/html/script_style.html')
-rw-r--r--tests/indent/html/script_style.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/indent/html/script_style.html b/tests/indent/html/script_style.html
new file mode 100644
index 000000000..b00f3f40f
--- /dev/null
+++ b/tests/indent/html/script_style.html
@@ -0,0 +1,12 @@
+<head>
+ <style>
+ a {
+ stroke-linecap: round;
+ }
+ </style>
+</head>
+<body>
+ <script>
+ const foo = "bar"
+ </script>
+</body>