A VS Code extension that completes relative paths to image files in your workspace inside Markdown  syntax.
The completion logic itself is implemented as a Language Server, md-image-path-lsp, and this extension is a thin wrapper that launches it from VS Code.
Features
Only suggests completions when the cursor is inside 
If a public/ directory exists in the workspace, returns public-relative absolute-style paths (e.g. /images/logo.png) following the Next.js static asset convention. Otherwise, returns paths relative to the Markdown file being edited (e.g. ../assets/logo.png)
Image files added or removed after startup are reflected in real time