Skip to content
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.

noxify/gridsome-plugin-remark-embed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gridsome-plugin-remark-embed

Gridsome Remark plugin to embed external stuff into your gridsome site.

Live Demo

https://gridsome-preview.ilovenox.now.sh/

Installation

npm install --save @noxify/gridsome-plugin-remark-embed

How to use

//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'],
            }]
          ]
        }
      }
    }
  ]
}

Documentation

You can find the complete documentation here: https://webstone.info/documentation/gridsome-plugin-remark-embed