Fast, readable, flexible web development.
Custom markdown incorporating the powers of a web framework.
Zero dependencies.html:
head:
title: "My Valerian.js Website"
body:
(Header
h1: "Welcome!"
)
(Content
p: "😊"
)
<html>
<head>
<title>
My Valerian.js Website
</title>
</head>
<body>
<div id="Header">
<h1>
Welcome!
</h1>
</div>
<div id="Content">
<p>
😊
</p>
</div>
</body>
</html>