build bug fix
This commit is contained in:
parent
ab28676d02
commit
3f28d08778
|
@ -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) {
|
||||
|
|
|
@ -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', '') $}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue