jsdoc/test/fixtures/markdown/highlighter.js

6 lines
151 B
JavaScript

'use strict';
exports.highlight = function(code, language) {
return '<pre><code>' + code + ' in this language: ' + language + '</code></pre>';
};