UNPKG

kss

Version:

The Node.js port of KSS: A methodology for documenting CSS and building style guides

15 lines (12 loc) 286 B
'use strict'; const hljs = require('highlight.js'); module.exports = function(nunjucks) { nunjucks.addFilter('hljs', (value, lang) => { lang = lang || 'html'; try { return hljs.highlight(lang, value, true).value; } catch (e) { console.log(e); } }); };