metalsmith-youtube

A Metalsmith plugin that lets you get embed Youtube Videos

Usage no npm install needed!

<script type="module">
  import metalsmithYoutube from 'https://cdn.skypack.dev/metalsmith-youtube';
</script>

README

metalsmith-youtube

A Metalsmith plugin that lets you get embed Youtube Videos

Build Status

Installation

$ npm install metalsmith-youtube

Usage

step 1

var youtube = require('metalsmith-youtube');

metalsmith.use(youtube({
  width: 560,      // optional, width video (default 560)
  height: 315,     // optional, height video (default 560)
  suggested: true,       // optional, display suggested videos
  controls: true,     // optional, display controls
  showTitle: true // optional, show video title and player actions
  privacy : true  // optional, enable privacy-enhaced mode
}));

step 2

---
title: test
---

## only the id
youtube|hWhMKalEic8

CLI Usage

{
  "plugins": {
    "metalsmith-youtube": {
    "width:": "560",
    "height": "315",
     "suggested": "true",   
      "controls": "true",
      "showTitle": "true",
      "privacy" : "true"
    }
  }
}

License

MIT