gatsby-remark-static-images

1.2.1 • Public • Published

gatsby-remark-static-images

Version License Travis CI

Copy images in markdown without processing them. Can be used in combination with gatsby-remark-images to copy SVG and GIF files. Make sure to place this plugin after gatsby-remark-images.

Getting started

yarn add --dev gatsby-remark-static-images

Usage

// gatsby-config.js
plugins: [
  {
    resolve: 'gatsby-transformer-remark',
    options: {
      plugins: [
        'gatsby-remark-static-images'
      ]
    }
  }
]

Options

imageName

This option lets you specify the output name for the image. It should be a function that takes a File node and returns the name of the image as a string.

Defaults to: (node) => ${node.name}-${node.internal.contentDigest}.${node.extension}.

Example

{
  resolve: 'gatsby-remark-static-images',
  options: {
    imageName: (node) => `${node.name}.${node.extension}`
  }
}

Dependencies (3)

Dev Dependencies (17)

Package Sidebar

Install

npm i gatsby-remark-static-images

Weekly Downloads

378

Version

1.2.1

License

MIT

Unpacked Size

16 kB

Total Files

17

Last publish

Collaborators

  • mrten