0.0.21 • Published 6 years ago
gatsby-remark-cloudinary-test v0.0.21
gatsby-remark-cloudinary-test
Proccesses images in Gatsby's remark using Cloudinary.
Creates <img>
tags from images in markdown.
Install
npm install gatsby-remark-cloudinary-test
# or
yarn add gatsby-remark-cloudinary-test
Usage
// gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: 'gatsby-remark-cloudinary-test',
options: {
cloudName: '...',
apiKey: '...',
apiSecret: '...',
},
},
],
}
}
]
}