Skip to content

Commit

Permalink
fix: markdown text rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
appelgriebsch committed Apr 18, 2019
1 parent 62f047b commit b445749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/signature-help-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ module.exports = class SignatureHelpManager {
*/
async getDocumentationHtml(markdownText, grammarName) {
if ((markdownText !== undefined) && (markdownText.length > 0)) {
return this.renderer.render(`<p>${markdownText}</p>`, grammarName);
return this.renderer.render(markdownText, grammarName);
}
return null;
}
Expand Down

0 comments on commit b445749

Please sign in to comment.