Mat Paradela46 downloadsKeeps markdown links collapsed to just their title in Live Preview, so arrowing between lines doesn't expand them. Only reveals the raw [text](url) when the cursor is placed strictly inside it.
An Obsidian plugin that keeps markdown links collapsed to just their title text in Live Preview — even while your cursor moves through the document.
By default, Obsidian's Live Preview expands a markdown link to its raw [text](url) form whenever the cursor touches it — including just landing on the edge of the link while arrowing between lines. If your notes are lists of links (e.g. bookmarks, task lists with reference URLs), reordering or navigating them causes constant, disruptive expand/collapse flicker.
[My bookmark title](https://example.com) shows as just My bookmark title.[, ], (url) syntax stays hidden at all times; the cursor skips over it instead of landing inside, so navigating between lines never expands a link.The plugin makes no network requests and stores no data. It writes to the system clipboard only when you click the popup's copy button, and only the URL of the link you copied; it never reads the clipboard.
main.js, manifest.json, and styles.css from the latest release.<your-vault>/.obsidian/plugins/link-hover-reveal/.npm install --legacy-peer-deps
npm run build
Then copy main.js, manifest.json, and styles.css into your vault's plugin folder as above.
To build and copy in one step, point npm run deploy at your vault — either
via the OBSIDIAN_PLUGIN_DIR environment variable, or by writing the plugin
folder path into a .deploy-target file (git-ignored):
echo "<your-vault>/.obsidian/plugins/link-hover-reveal" > .deploy-target
npm run deploy