Skip to content

Commit

Permalink
Revert "Escape the hover text (#650)"
Browse files Browse the repository at this point in the history
This reverts commit c9a7390.
  • Loading branch information
rwols committed Jul 20, 2019
1 parent 54755b4 commit ef2685d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/hover.py
Expand Up @@ -139,9 +139,9 @@ def hover_content(self, point, response: 'Optional[Any]') -> str:
value = ""
language = None
if isinstance(item, str):
value = escape(item)
value = item
else:
value = escape(item.get("value"))
value = item.get("value")
language = item.get("language")
if language:
formatted.append("```{}\n{}\n```\n".format(language, value))
Expand Down

0 comments on commit ef2685d

Please sign in to comment.