No description
Find a file
2026-04-13 21:22:18 +08:00
.github/workflows ci: trigger release on tags without v prefix 2026-04-12 21:38:11 +08:00
.gitignore Initial commit 2026-04-12 21:22:41 +08:00
bun.lock chore: install eslint-plugin-obsidianmd and add lint script 2026-04-13 21:22:18 +08:00
eslint.config.js chore: add eslint config with obsidianmd plugin 2026-04-13 21:20:55 +08:00
LICENSE chore: Add MIT License to the project 2026-04-12 21:22:24 +08:00
main.ts fix: remove unnecessary async from onload 2026-04-13 09:14:49 +08:00
manifest.json chore: update plugin id, name, and description 2026-04-12 21:34:46 +08:00
package.json chore: install eslint-plugin-obsidianmd and add lint script 2026-04-13 21:22:18 +08:00
README.md Initial commit 2026-04-12 21:22:41 +08:00
tsconfig.json Initial commit 2026-04-12 21:22:41 +08:00
versions.json Initial commit 2026-04-12 21:22:41 +08:00
vite.config.ts Initial commit 2026-04-12 21:22:41 +08:00

Linkify

An Obsidian plugin that automatically converts pasted URLs into Markdown links by fetching the page title.

How it works

When you paste a URL into the editor, the plugin:

  1. Detects the pasted text is a URL
  2. Fetches the page title from the URL
  3. Inserts a formatted Markdown link: [Page Title](https://example.com)

Installation

From Community Plugins

  1. Open Obsidian Settings → Community plugins
  2. Disable Safe mode if prompted
  3. Click Browse and search for Linkify
  4. Click Install, then Enable

Manual

  1. Download main.js and manifest.json from the latest release
  2. Place them in your vault at .obsidian/plugins/linkify/
  3. Reload Obsidian and enable the plugin in Settings → Community plugins

License

MIT