Skip to content

Commit

Permalink
remove call to convert() on return value of process method for inline…
Browse files Browse the repository at this point in the history
… macro extension (#1653)

- the process method should return an Inline object, not a string
  • Loading branch information
mojavelinux authored and ggrossetie committed Sep 19, 2022
1 parent 65bf7e5 commit 8a26db2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function (registry) {
} else {
text = ':)'
}
return self.createInline(parent, 'quoted', text, { 'type': 'strong' }).convert()
return self.createInline(parent, 'quoted', text, { 'type': 'strong' })
})
})
}

0 comments on commit 8a26db2

Please sign in to comment.