No description
Find a file
GnoxNahte 253fab0060 Update README.md
- Improve grammar, spelling, etc
- Add credits
2024-03-25 14:56:29 +08:00
readme-assets Update README.md with SupportedWebsiteList.md for all the embeds with examples. 2024-03-24 23:10:21 +08:00
src Update README.md with SupportedWebsiteList.md for all the embeds with examples. 2024-03-24 23:10:21 +08:00
.editorconfig Initial commit 2024-03-05 08:42:56 +08:00
.eslintignore Initial commit 2024-03-05 08:42:56 +08:00
.eslintrc Initial commit 2024-03-05 08:42:56 +08:00
.gitattributes Initial commit 2024-03-05 08:42:56 +08:00
.gitignore Initial commit 2024-03-05 08:42:56 +08:00
.npmrc Initial commit 2024-03-05 08:42:56 +08:00
esbuild.config.mjs Shift files into the "src" folder for easier management 2024-03-11 22:36:22 +08:00
LICENSE Create LICENSE (MIT License) 2024-03-06 15:59:39 +08:00
manifest.json Initial commit 2024-03-05 08:42:56 +08:00
package-lock.json Install codemirror packages "language", "state", "view" 2024-03-12 21:44:47 +08:00
package.json Install codemirror packages "language", "state", "view" 2024-03-12 21:44:47 +08:00
preview-embed-modal.ts Added base for live preview support. Need cleanup and testing 2024-03-17 21:00:38 +08:00
README.md Update README.md 2024-03-25 14:56:29 +08:00
styles.css Cleaning up code 2024-03-21 15:23:41 +08:00
SupportedWebsiteList.md Update README.md 2024-03-25 14:56:29 +08:00
tsconfig.json Initial commit 2024-03-05 08:42:56 +08:00
version-bump.mjs Initial commit 2024-03-05 08:42:56 +08:00
versions.json Initial commit 2024-03-05 08:42:56 +08:00

obsidian-auto-embed

Obsidian plugin to help embed links automatically instead of using iframes

Getting Started

Downloading the plugin

TODO - Submitting to Obsidian's plugin directory

  1. Paste a link
  2. Select "Create Embed"
  3. (Optional) Add Options
  4. Done! Wait for the embed to load

GIF showing example on how to embed links

Uses the same syntax as Obsidian - Embed Web pages. Syntax: ![options](link)

Features

Auto embeds websites like: Imgur, CodePen, Steam. Full list of supported websites

Supported websites:

Warning

Those websites that have * means that it has some sort of limitation. See Current Limitations & Known Bugs for more info

For a list with examples of how the websites look like Supported Websites List

Custom Options

How to add options:

  • In between the square brackets [add options here], add your options.
  • If you aren't sure which options are available, refer to the table below

All options:

Option Description Example Markdown
noembed Disables embedding for this link. If possible, try to use [](link) instead. Same syntax, just without '!' ![noembed](https://example.com)
w:value / width:value Sets embed's width ![w:100%](https://example.com)
h:value / height:value Sets embed's height ![h:500px](https://example.com)

Uses CSS Units where applicable.

How the plugin works

A brief overview with some steps on how the plugin works. Not required to use the plugin, just for those who are curious. Certain steps vary depending on whether you're in Reading View or Live Preview. However, the plugin doesn't have any impact when you're in source mode.

  1. Search where in the document the syntax is found.
    • In Reading View:
      Searches for the <img> tag that's generated by Obsidian when you use this format: ![](link)
    • In Live Preview:
      Searches for ![](link) and gets the options and URL from it.
  2. Get the URL from it, and convert it to the embed equivalent. Usually adds /embed/ somewhere in the url. Results in the same website but focused only on the content. No headers, footer, etc
  3. Replace those tags with <iframe> and apply options (width, height, dark mode, etc)
  4. Some websites like Twitter, Reddit or Imgur, will send a resize message. The plugin uses the info to resize the embed.

Roadmap

  • Add support for other websites (If you want other websites, create an issue or message me)
    • Google Maps
    • Google Docs
    • Google Calendar
    • Notion
    • Other websites. Iframely has a list of websites that can be embedded.
  • Add tests
  • Updated README.md
    • Improve readability. Open to suggestions, especially if something isn't clear!
    • Add images/gifs to show examples
    • Add installation instructions
  • Submit to Obsidian plugin directory?

Current Limitations & Known Bugs

  • General
    • Live Preview: It's still experimental which means it might have bugs.
    • Mobile: Not tested yet
  • Website specific
    • Reddit: Incorrect resizing of Reddit embeds when multiple Reddit embeds appear in the same view.
      Temporary fix methods:
      • Space out Reddit embeds such that there aren't multiple embeds in your view
      • Manually set the height by using options: ![h:240px](Reddit link)
    • Spotify: Only able to play 30 seconds of a song. Spotify only allows when the user is logged in to the browser, which is not possible in Obsidian.
    • Twitter & YouTube: Since Obsidian supports it, I won't interfere with it. However, it means that options isn't supported. I might be able to replace Obsidian's embeds with mine, but it'll only work in Live Preview, but not Reading Mode. This makes an inconsistent user experience but if you want this feature, contact me.
    • Twitter / X: Obsidian supports https://twitter.com but not https://x.com. This plugin just helps to embed X. If you replace Twitter with x, or vice versa, it'll lead to the same tweet/post. Usually when copying from the mobile app, it's X. When copying from the web, it's Twitter.

Please send any issues you found!

Frequently asked questions

The embed isn't appearing

  1. Have you enabled the plugin?
  2. Are you following this syntax? ![](link)
    For example: ![]()

Contact Me

I've just started Obsidian and this is my first plugin.
If you have any questions, feature requests or issues feel free to create an issue or contact me!

Email - gnoxnahte@gmail.com
Discord DM - https://discordapp.com/users/222261096738717696

If this plugin helped you and want to support its development, consider supporting me at Ko-fi

Credits

  • Inspired by Sam Warnick's Simple Embed. Changed a lot of things from it though.