metalsmith-youtube
v1.0.2
Published
A Metalsmith plugin that lets you get embed Youtube Videos
Downloads
10
Maintainers
Readme
metalsmith-youtube
A Metalsmith plugin that lets you get embed Youtube Videos
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