kjelsrud.dev/node_modules/shiki/samples/astro.sample

17 lines
226 B
Text
Raw Normal View History

2023-07-19 21:31:30 +02:00
---
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>