fs-imagesize

0.1.3 • Public • Published

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%.

Readme

Keywords

Package Sidebar

Install

npm i fs-imagesize

Weekly Downloads

10

Version

0.1.3

License

MIT

Unpacked Size

3.13 kB

Total Files

4

Last publish

Collaborators

  • flogersoft