https://pugjs.org/language/code.html
Есть нюанс: код придётся писать одной строчкой.
Типа
doctype html
html
head
title= title
body
- function foo() { var b = 'aaa'; return b; }
- var a = foo();
h2 Hello, World!
h3= a
Результат:
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<h2>Hello, World!</h2>
<h3>aaa</h3>
</body>
</html>
А-а-а! Фирма веников не вяжет.
doctype html
html
head
title= title
body
-
function foo() {
var b = 'aaa';
return b;
}
- var a = foo();
h2 Hello, World!
h3= a