Fix markup so tests pass.

This commit is contained in:
shakefu 2014-04-15 16:42:44 -07:00
parent 810ab1d58f
commit b10de12c2d

View File

@ -93,7 +93,7 @@ function getParseFunction(parserName, conf) {
}; };
// Allow prettyprint to work on inline code samples // Allow prettyprint to work on inline code samples
markedRenderer.code = function(code, language) { markedRenderer.code = function(code, language) {
return '<pre class="prettyprint source">'+code+'</pre>'; return '<pre class="prettyprint source"><code>'+code+'</code></pre>';
}; };
parserFunction = function(source) { parserFunction = function(source) {