You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hover doesn't render sub/sup html elements in Markdown text.
VSCode Version: 1.9.1/1.10.0-insider
OS Version: macOS 10.12.3
Steps to Reproduce:
hover over some text returning x<sup>x+1</sup>. x<sub>i+1</sub>
Text should be rendered as xx+1. xi+1
This follows up on redhat-developer/vscode-java#155, where I'm now trying to make Javadoc return sub/sub HTML tags as-is, in the Markdown text (unreleased WIP):
The Markdown rendering engine in VS Code supports it, as can be seen in the Markdown preview pane, just not in hover mode.
The text was updated successfully, but these errors were encountered:
The MarkedString is strictly markdown without embedded html or scripts. Closing as dupe of #11877. The idea is to allow Html (w/o scripts and styles) in addition to Markdown. I think that would suite javadoc well because it often html-elements frequently
Hover doesn't render sub/sup html elements in Markdown text.
Steps to Reproduce:
x<sup>x+1</sup>. x<sub>i+1</sub>
This follows up on redhat-developer/vscode-java#155, where I'm now trying to make Javadoc return sub/sub HTML tags as-is, in the Markdown text (unreleased WIP):
The Markdown rendering engine in VS Code supports it, as can be seen in the Markdown preview pane, just not in hover mode.
The text was updated successfully, but these errors were encountered: