mdannotation-embed

0.3.0 • Public • Published

Markdown Annotation @embed

Markdown annotation is a posthtml plugin to embed videos, code playgrounds, etc.

Supports:

Quick start

npm i mdannotation-embed --save 

Usage

Use the @embed annotation directly in your Markdown

@embed https://www.youtube.com/watch?v=dQw4w9WgXcQ
<div class="md-video">
    <iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" [...] ></iframe>
</div>

Tips

To have a responsive 16:9 video, you should add the following CSS rules:

.md-video {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 56.25%
}
.md-video > iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

Readme

Keywords

Package Sidebar

Install

npm i mdannotation-embed

Weekly Downloads

1

Version

0.3.0

License

MIT

Last publish

Collaborators

  • tzi