Auto Card Link Enhanced

by KreNtal
5
4
3
2
1
Score: 35/100

Description

This plugin has not been manually reviewed by Obsidian staff. Automatically fetches metadata from a url and makes it as a card-styled link.

Reviews

No reviews yet.

Stats

stars
53
downloads
0
forks
1
days
NaN
days
NaN
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
0
commits

Latest Version

Invalid date

Changelog

README file from

Github

Auto Card Link Enhanced maintained by KreNtal since 2026-05-04.

  • Automatically fetches metadata from a url and makes it as a card-styled link.
  • Card-styled link is generated by code block which does not mess up your Markdown files unlike HTML tags!
  • Setup Hotkeys from Obsidian settings

Feature

  • Paste and enhance copied url
  • Enhance selected url
  • Support for hotkeys to paste a link to url or to enhance a link to a card
  • Support for local images through internal links (image: "[[image.png]]")

Settings

  • Setting for enhancing default paste
  • Settings to add commands in right click menu
  • Settings to save images and favicons locally
  • Settings to change card style
  • Setting to show images on the left or right of the card

The code block cardlink uses YAML syntax for displaying card-styled link.

attributes

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

example

```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
```

Customizing Style

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.

Motivation

  • Wanted to show beautiful links in my notes
  • Didn't want to mess up my notes with HTML tags
  • Wanted to keep the original plugin updated (KreNtal)

Credits

This is a fork of the original obsidian-auto-card-link by Nekoshita Yuki.