0.0.1 • Published 7 months ago

remark-webembed v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Remark Webembed

remark plugin to embed web content using markdown directives.

Out of the box support for oembed and custom providers. Automatically wraps the iframe into a responsive container.

Can be used on the server or in the browser (though certain oembed API providers block cross-origin requests).

Installation

This package is ESM only: Node 12+ is needed to use it and it must be imported instead of required.

npm install remark-webembed

Usage

import { unified } from 'unified'
import remarkParse from 'remark-parse'
import remarkRehype from 'remark-rehype'
import remarkDirective from 'remark-directive'
import rehypeStringify from 'rehype-stringify'
import remarkWebembed from 'remark-Webembed'

unified()
  .use(remarkParse)
  .use(remarkDirective)
  .use(remarkWebembed, options)
  .use(remarkRehype)
  .use(rehypeStringify)
  .process(markdown)

Sample web embed

Input:

::embed[https://www.youtube.com/watch?v=32I0Qso4sDg]

HTML Output:

<div>
  <head></head>
  <body>
    <div
      class="webembed-wrapper"
      style="position: relative; overflow: hidden; width: 100%; padding-top: 56.49999999999999%;"
    >
      <iframe
        width="100%"
        height="100%"
        src="https://www.youtube.com/embed/32I0Qso4sDg?feature=oembed"
        frameborder="0"
        allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
        allowfullscreen
        title="[HOONIGAN] Gymkhana 2020: Travis Pastrana Takeover; Ultimate Hometown Shred in an 862hp Subaru STI"
        style="position: absolute; top: 0; left: 0; border: 0;"
        class="webembed-iframe"
      ></iframe>
    </div>
  </body>
</div>

API

remark().use(remarkWebembed, [options])

options

options.queryParams

Type: object.

Query parameters passed to the oembed API. If maxWidth or maxHeight is specified, it will be applied to the iframe container as well.

Check the oembed provider's documentation for supported query parameters.