Introduction
Gridsome Remark plugin to embed external stuff into your gridsome site.
Installation
npm install -s @noxify/gridsome-plugin-remark-embed
Usage
With default settings
gridsome.config.js
module.exports = {
plugins: [
{
use: '@gridsome/source-filesystem',
options: {
path: 'blog/**/*.md',
route: '/blog/:year/:month/:day/:slug',
remark: {
plugins: [
[ '@noxify/gridsome-plugin-remark-embed', {
'enabledProviders' : ['Youtube', 'Twitter', 'Gist'],
}]
]
}
}
}
]
}
With provider configuration
gridsome.config.js
module.exports = {
plugins: [
{
use: '@gridsome/source-filesystem',
options: {
path: 'blog/**/*.md',
route: '/blog/:year/:month/:day/:slug',
remark: {
plugins: [
[ '@noxify/gridsome-plugin-remark-embed', {
'enabledProviders' : ['Youtube', 'Twitter', 'Gist'],
'Youtube' : {
nocookie: false,
width: '300px',
align: 'left'
},
'Twitter' : {
align: 'center',
hideConversation: true
}
}]
]
}
}
}
]
}
Supported providers
You can find the currently supported providers and their configurations in the sidebar.