gatsby-remark-blog-card
v1.0.1
Published
Gatsby plugin to embed external links beautifully in markdown.
Downloads
5
Maintainers
Readme
Usage
Install the plugin:
npm install gatsby-remark-blog-card
or
yarn add gatsby-remark-blog-card
Add it to your gatsby-config.js:
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve: "gatsby-remark-blog-card",
}
},
},
],
};