Merge branch 'master' of github.com:shakefu/jsdoc into shakefu-master

This commit is contained in:
Jeff Williams 2014-04-19 17:20:20 -07:00
commit 6c2d09120e

View File

@ -91,6 +91,10 @@ function getParseFunction(parserName, conf) {
return util.format('<h%s>%s</h%s>', level, text, level);
};
// Allow prettyprint to work on inline code samples
markedRenderer.code = function(code, language) {
return '<pre class="prettyprint source"><code>'+code+'</code></pre>';
};
parserFunction = function(source) {
var result;