kjelsrud.dev/node_modules/shiki/samples/astro.sample
2023-07-19 21:31:30 +02:00

16 lines
226 B
Text

---
const name = "world"
---
<!DOCTYPE html>
<html>
<head>
<!-- This... is an Astro comment. -->
<title>Hello, {name}</title>
</head>
<body>
<main>
<h1>Hello, {name}</h1>
</main>
</body>
</html>