Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@gatsby-contrib/gatsby-remark-link-youtube

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gatsby-contrib/gatsby-remark-link-youtube

Add a link with a thumbnail to Youtube Videos in Gatsby via Markdown

  • 0.1.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

Instead of embedding a Youtube Video in your Markdown as with gatsby-remark-embed-youtube, it add a thumbnail with a link to the video. Like this your users aren't polluted with google cookies, particulary for european users.

Install

  1. Install plugin to your site:
yarn add @gatsby-contrib/gatsby-remark-link-youtube
  1. Add following to your gatsby-config.js:
    plugins: [
      {
        resolve: "gatsby-transformer-remark",
        options: {
          plugins: [
            {
              resolve: `@gatsby-contrib/gatsby-remark-link-youtube`,
              options: {
                width: 768,
                className: `center`,
                title: `Cliquer pour voir la vidéo sur youtube.com`,
              },
            },
          }
          ]
        }
      },
  1. Restart gastby.

Usage

# Look at this Video:

`youtube: w7y-1eY0mcE`

Will render in your html as:

<a href="https://www.youtube.com/watch?v=w7y-1eY0mcE" title="Cliquer pour voir la vidéo sur youtube.com"><img src="https://img.youtube.com/vi/w7y-1eY0mcE/0.jpg" alt="Thumbnail of Youtube video w7y-1eY0mcE" title="Cliquer pour voir la vidéo sur youtube.com" class="center" width="768"></a>

License

MIT

Keywords

FAQs

Package last updated on 07 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc