Markdown-it plugin to embed a hosted videos
npm install markdown-it-video> markdown-it plugin for embedding hosted videos.

#### Enable plugin
``js`
var md = require('markdown-it')({
html: true,
linkify: true,
typography: true
}).use(require('markdown-it-video', { // <-- this use(package_name) is required
youtube: { width: 640, height: 390 },
vimeo: { width: 500, height: 281 },
vine: { width: 600, height: 600, embed: 'simple' },
prezi: { width: 550, height: 400 }
}));
#### Inline style
This plugin is made to work in the inline style. If you'd like a block-style, you may be interested in https://github.com/rotorz/markdown-it-block-embed
#### YouTube
`md`
@youtube
is interpreted as
`html
Alternately, you could use a number of different YouTube URL formats rather than just the video id.
`md
@youtube
@youtube
@youtube
@youtube
@youtube
@youtube
@youtube
@youtube
`#### Vimeo
`md
@vimeo
`is interpreted as
`html
`Alternately, you could use the url instead of just the video id.
`md
@vimeo
@vimeo
`#### Vine
`md
@vine
`is interpreted as
`html
`Alternately, you could use the url, or even the whole embed tag instead of just the video id.
`md
@vine
@vine
@" class="text-primary hover:underline" target="_blank" rel="noopener noreferrer">vine
`#### Prezi
`md
@prezi
`is interpreted as
`html
`Alternately, you could use the url.
`md
@prezi
@prezi
@prezi
`#### OSF
This plugin allows you to use the OSF's Modualar File Renderer or the MFR to embed video or other files
into your markdown assuming your page has mfr.js and mfr.css loaded.
`md
@osf
`is interpreted as
`html
`Alternately, you could use the url.
`md
@osf
`
Options
`js``