Skip to content

Commit 031ff86

Browse files
committed
Change the way marked is called
1 parent 1eab03f commit 031ff86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/preprocessor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ function buildParamDocs(docs) {
271271
function renderItemDescriptionsAsMarkdown(item) {
272272
if (item.description) {
273273
const entities = new Entities();
274-
item.description = entities.decode(marked(item.description));
274+
item.description = entities.decode(marked.parse(item.description));
275275
}
276276
if (item.params) {
277277
item.params.forEach(renderItemDescriptionsAsMarkdown);

0 commit comments

Comments
 (0)