1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/testdata/fmt/badly_formatted_fixed.md
Pig Fang 3a3315cc7f
feat(fmt): support HTML, Svelte, Vue, Astro and Angular (#25019)
This commit adds capability to format HTML, Svelte, Vue, Astro and Angular
files.

"--unstable-html" is required to format HTML files, and "--unstable-component"
flag is needed to format other formats. These can also be specified in the config
file.

Close #25015
2024-08-14 22:58:48 +02:00

544 B

Hello Markdown

console.log("Hello World");
console.log("Hello World2");
function hello(name: string) {
  console.log(name);
}

hello("alice");
function foo(): number {
  return 2;
}
{
  // Comment in JSON
  "key": "value",
  "key2": "value2"
}
{
  "numbers": ["1", "2"]
}
- item1
- item2
#app > .btn {
  color: #000;
}
<div class="container">content</div>
<script lang="ts">
  let a: number;
</script>