0.1.3 • Published 2 years ago

fs-imagesize v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-markdown plugin to set images size.

A simple to use plugin to set images width property.

Basically, images are displayed in their full size when you use react-markdown. This can cause them to overlap their parent element or to be displayed too small. With this plugin the width property can be set very easily.

Install

npm install fs-imagesize

Simple to use

import React from "react";
import ReactMarkdown from "react-markdown";
import imageSize from "fs-imagesize";

function MyComponent(props) {
    return (
        <React.Fragment>
            <ReactMarkdown plugins={[[imageSize, {width: "230px"}]]}>![Image](https://anyImageUrl.png)</ReactMarkdown>
        </React.Fragment>)
}

The width property can be set to any pixel/percent size. If it not set the default value is 100%.

0.1.2

2 years ago

0.1.3

2 years ago

0.1.1

3 years ago

0.1.0

3 years ago