UNPKG
snk
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
Sneak a peek at your markdown.
github.com/gratimax/snk
gratimax/snk
snk
/
lib
/
template.js
9 lines
(7 loc)
•
238 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
hogan =
require
(
'hogan.js'
);
var
fs =
require
(
'fs'
);
var
path =
require
(
'path'
);
var
template = fs.
readFileSync
(path.
join
(__dirname,
'template.html'
), {
encoding
:
'utf8'
});
var
compiled =
module
.
exports
= hogan.
compile
(template);