Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mattjennings/mdsvex-relative-images

Add support for relative image URLs in mdsvex
https://github.com/mattjennings/mdsvex-relative-images

Last synced: about 8 hours ago
JSON representation

Add support for relative image URLs in mdsvex

Awesome Lists containing this project

README

        

# mdsvex-relative-images

Allows you to use relative urls to images from the md file.

# Usage

```
npm install mdsvex-relative-images
```

Add the plugin to your mdsvex config

```js
// mdsvex.config.js
import relativeImages from "mdsvex-relative-images";

export default {
// ... rest of your config
remarkPlugins: [relativeImages],
};
```

Now you can load images like so:

```md
![my image](./my-image.png)
```

It also works for img and video tags:

```svelte

```