UNPKG

350 BJavaScriptView Raw
1var Path = require("path");
2
3function h(code, lang) {
4 code = code.trim();
5 code = code.replace('&', '&');
6 code = code.replace('<', '&lt;');
7 code = code.replace('>', '&gt;');
8 return "<pre class='highlight " + lang + "'>" + code + "</pre>";
9}
10
11h.cssFile = Path.join(__dirname, "highlight.css");
12
13module.exports = h;