I got the same message when installing the the extension on linux.
There are several issues here:
It looks like a json code block was attempted, but must not support triple back tick code blocks and seems to have instead parsed the triple back ticks as an empty code block followed by an unpaired back tick.
The double astrix are getting parsed as markdown bold instead of left as is.
rust-analyzer version: rust-analyzer version: 0.4.2060-standalone (aa00ddcf6 2024-08-02)
editor or extension:
I think you can get to the Welcome page in VS Code on a Mac via:
Cmd+Shift P
>Welcome: Open Walkthrough...
>Learn about rust-analyzer
(I actually got to this page via a link on a general VS Code Welcome Overview page but I have no idea when/how this Welcome page displays this link).
Under the
Useful Setup Tips
, the paths that are displayed do not seem to be correct./.cargo/registry/src//*.rs
/lib/rustlib/src/rust/library///*.rs
Screenshot:
Based on:
https://github.com/rust-lang/rust-analyzer/blob/aa00ddcf654a35ba0eafe17247cf189958d33182/editors/code/package.json#L3235
It seems the paths should be:
**/.cargo/registry/src/**/*.rs
**/lib/rustlib/src/rust/library/**/*.rs
Seems like the wrong rendering and an easy first issue.