12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
|
const nunjucks = require("nunjucks");
|
||
|
const showdown = require("shohwdown");
|
||
|
|
||
|
async function main (){
|
||
|
nunjucks.configure({
|
||
|
autoescape: true
|
||
|
});
|
||
|
//nunjucks.render()
|
||
|
}
|
||
|
|
||
|
|
||
|
module.exports.main = main;
|