Skip to content
This repository has been archived by the owner on May 3, 2020. It is now read-only.

Commit

Permalink
one more place to remove markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Abbott committed Oct 26, 2017
1 parent 36f6483 commit fc4a7e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function directives(name:string):Promise<CompletionItem[]> {
const allows = await accessModifiers();
items = allows.map(a => {
const i = new CompletionItem(a.name, CompletionItemKind.Keyword);
i.documentation = a.about;
i.documentation = sanitize(a.about);
return i;
});
}
Expand Down

0 comments on commit fc4a7e8

Please sign in to comment.