KreNtal2k downloadsAutomatically convert URLs into beautiful card-styled or Markdown links with metadata, thumbnails and favicons.
Automatically generate beautiful card-styled links from URLs by fetching their metadata, thumbnails and favicons, and turning them into a YAML cardlink code block or into a compact inline Markdown link carrying the fetched title.
It includes tailored handling for over twenty sites — YouTube, Vimeo, Reddit, X, GitHub, GitLab, npm, Wikipedia, arXiv, Spotify, Stack Exchange, LinkedIn, Hacker News, Bluesky, IMDb, Notion, Discord and more — plus options for thumbnail quality, local image saving and multiple card styles.
[title - Site](url)) carrying the title fetched from the page.image: "[[image.png]]").status: not-found, and its title is marked the way the settings say.This plugin needs internet access to fetch link metadata. To be transparent about what it sends and where:
[!IMPORTANT] No analytics, telemetry, or personal data are collected by this plugin.
The code block cardlink uses YAML syntax for displaying card-styled link.
| name | required | description |
|---|---|---|
| url | true | url to open when you click the link |
| title | true | title of the link |
| description | false | description of the link |
| host | false | host of the link |
| favicon | false | favicon of the link |
| image | false | thumbnail image to show in the card link |
| author | false | channel or author (if present) |
| duration | false | duration time for videos |
| status | false | not-found when the site says the page is not there; the title is then marked as the settings say |
```cardlink
url: https://obsidian.md/
title: "Obsidian - Sharpen your thinking"
description: "The free and flexible app for your private thoughts."
host: obsidian.md
favicon: https://obsidian.md/favicon.ico
image: https://obsidian.md/images/banner.png
```
A link the site says is not there:
```cardlink
url: https://github.com/obsidianmd/nonexistent-repo
title: "obsidianmd/nonexistent-repo"
host: github.com
favicon: https://github.com/favicon.ico
status: not-found
```
Card-styled link is styled by styles.css. To customize, you can try making CSS snippets.
For example:
.auto-card-link-author {
display: none;
}
To hide the author.
This is a fork of the original obsidian-auto-card-link by Nekoshita Yuki.
Auto Card Link Enhanced maintained by KreNtal since 2026-05-04.