added html rendering to java boot hovers

This commit is contained in:
Martin Lippert
2017-08-25 12:20:26 +02:00
parent ab66f81fa3
commit 0722590864
2 changed files with 9 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ public class RequestMappingHoverProvider {
while (keys.hasNext()) {
String key = keys.next();
if (doesMatch(annotation, key)) {
hoverContent.add(Either.forLeft(key));
hoverContent.add(Either.forLeft(key + " - [url of the mapping](http://localhost:8080/path)"));
hoverContent.add(Either.forLeft(jsonObject.get(key).toString()));
}
}