Link Title Plus converts a pasted HTTP(S) URL into a Markdown link with its page title and favicon.
After the plugin is approved, install and enable Link Title Plus from Settings -> Community plugins in Obsidian.
For manual installation, copy main.js, manifest.json, and styles.css into:
<Vault>/.obsidian/plugins/link-title-plus/
Then enable the plugin from Obsidian's Community plugins settings.
Paste a single HTTP(S) URL in a Markdown editor. The plugin replaces it with a Markdown link containing the page title. When a favicon is available, it is displayed; otherwise the website name is used.
Configure the display template and optional proxy in the plugin settings.
The default template is:
[{{display}}]({{url}})
{{display}} renders an icon and title when a favicon is available, or a website name and title when it is not.
Available placeholders:
| Placeholder | Value |
|---|---|
{{title}} |
Page title |
{{url}} |
Original URL |
{{hostname}} |
Host name |
{{siteName}} |
Website name |
{{icon}} |
Inlined favicon data URL |
{{description}} |
Page description |
{{site}} |
16px icon when available, otherwise website name |
{{display}} |
Icon or website name, followed by the page title |
Examples:
[{{title}}]({{url}})
[{{siteName}} · {{title}}]({{url}})
The proxy is used only for fetching page metadata. Leave it empty to use Obsidian's default network settings.
http://127.0.0.1:7890
socks5://127.0.0.1:1080