build bug fix

This commit is contained in:
Alex Wolfe 2015-05-06 15:53:58 -07:00
parent ab28676d02
commit 3f28d08778
2 changed files with 2 additions and 4 deletions

View File

@ -30,9 +30,7 @@ module.exports = function renderMarkdown(trimIndentation) {
cssClasses.push(this.options.langPrefix + escape(lang, true));
}
return 'pre(class="' + cssClasses.join(' ') + '")\n'
+ indentString('code.\n', ' ', 2)
+ trimmedCode;
return 'pre(class="' + cssClasses.join(' ') + '")\n' + indentString('code.\n', ' ', 2) + trimmedCode;
};
renderer.heading = function (text, level, raw) {

View File

@ -38,7 +38,7 @@ p.location-badge.
{$ member.name $}{$ paramList(member.params) | indent(4, true) | trim $}
{% endif %}
:markdown
}
{$ member.description | indent(6, true) | replace('## Example', '') | replace('# Example', '') $}