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
Fix issue where doc comment with nested comments inside is not shown properly on hover. (#526)
* Add an example doc comment with code block
See #522
* More tests in a separate file.
* Add example with no nested comments.
* Found the issue.
* Remove PrepareUtils
Might be the last file inherited from the original extension, which keeps on giving years later.
* Update CHANGELOG.md
{"contents": "```rescript\nint\n```\n\n Doc comment with a triple-backquote example\\n \\n ```res example\\n let a = 10\\n /*\\n * stuff\\n */\\n ```\\n"}
3
+
4
+
Hover src/DocComments.res 22:6
5
+
{"contents": "```rescript\nint\n```\n\n\n Doc comment with a triple-backquote example\n \n ```res example\n let a = 10\n /*\n * stuff\n */\n ```\n"}
6
+
7
+
Hover src/DocComments.res 33:9
8
+
{"contents": "```rescript\nint\n```\n\n Doc comment with a triple-backquote example\\n \\n ```res example\\n let a = 10\\n let b = 20\\n ```\\n"}
9
+
10
+
Hover src/DocComments.res 44:6
11
+
{"contents": "```rescript\nint\n```\n\n\n Doc comment with a triple-backquote example\n \n ```res example\n let a = 10\n let b = 20\n ```\n"}
0 commit comments