fix(html): fix wrong indents for script/style tags

This commit is contained in:
Pham Huy Hoang 2023-01-02 16:28:40 +09:00 committed by Stephan Seitz
parent 28baed7698
commit 8c71c6c5ed
6 changed files with 91 additions and 2 deletions

View file

@ -0,0 +1,4 @@
<div>
<div>
</div>
</div>

View file

@ -0,0 +1,12 @@
<head>
<style>
a {
stroke-linecap: round;
}
</style>
</head>
<body>
<script>
const foo = "bar"
</script>
</body>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<br/>
<button
id = "123"
</body>
</html>

View file

@ -0,0 +1,8 @@
<meta charset="UTF-8">
<html lang="en">
<head>
<meta
charset="UTF-8"
</head>
</html>