git ssb

0+

cel-desktop / ssb-pkg



Tree: efcf9fd06b02fa9bcd28681b4c777224e19702bb

Files: efcf9fd06b02fa9bcd28681b4c777224e19702bb / test / test-79-npm / pug / pug.js

395 bytesRaw
1'use strict';
2
3// see also express.js
4
5var file =
6'html\n' +
7' head\n' +
8' title!= title\n' +
9' body\n' +
10' h1!= message\n';
11
12var pug = require('pug');
13var fn = pug.compile(file, {});
14var html = fn({ title: 'Hey', message: 'Hello there!' });
15
16if (html === '<html><head><title>Hey</title></head>' +
17 '<body><h1>Hello there!</h1></body></html>') {
18 console.log('ok');
19}
20

Built with git-ssb-web