-
-
Notifications
You must be signed in to change notification settings - Fork 14
Closed
Description
Depending on whether the <script>
is inside a <Component/>
it is formatted differently.
---
---
<html lang="en">
<head>
<meta charset="utf-8" />
</head>
<body>
<h1>Astro</h1>
<script>
console.log("1");
console.log("2");
</script>
</body>
</html>
---
import Component from "../Component.astro";
---
<Component>
<h1>Astro</h1>
<script>
console.log("1");
console.log("2");
</script>
</Component>
Repro:
https://github.com/OliverSpeir/markup-fmt-astro-scriptindent
Metadata
Metadata
Assignees
Labels
No labels