@remark-embedder transformer for oEmbed supported links
npm install @remark-embedder/transformer-oembed---
[![Build Status][build-badge]][build]
[![Code Coverage][coverage-badge]][coverage]
[![version][version-badge]][package]
[![downloads][downloads-badge]][npmtrends]
[![MIT License][license-badge]][license]
[![All Contributors][all-contributors-badge]](#contributors-)
[![PRs Welcome][prs-badge]][prs]
[![Code of Conduct][coc-badge]][coc]
You're using [@remark-embedder/core][@remark-embedder/core] to automatically
convert URLs in your markdown to the embedded version of those URLs and want to
have a transform for providers that support an oEmbed API. [Learn more about
oEmbed from oembed.com][oembed.com]
This is a [@remark-embedder][@remark-embedder/core] transform for supported
oembed API providers. Find the list of supported providers on
[oembed.com][oembed.com].
- Installation
- Usage
- Config
- Config as a function
- Inspiration
- Other Solutions
- Issues
- π Bugs
- π‘ Feature Requests
- Contributors β¨
- LICENSE
This module is distributed via [npm][npm] which is bundled with [node][node] and
should be installed as one of your project's dependencies:
``shell`
npm install @remark-embedder/transformer-oembed
`ts
import remarkEmbedder from '@remark-embedder/core'
import oembedTransformer from '@remark-embedder/transformer-oembed'
// or, if you're using CommonJS require:
// const {default: oembedTransformer} = require('@remark-embedder/transformer-oembed')
import remark from 'remark'
import html from 'remark-html'
const exampleMarkdown =
This is a great YouTube video.
Watch it here:
https://www.youtube.com/watch?v=dQw4w9WgXcQ
Isn't it great!?
async function go() {
const result = await remark()
.use(remarkEmbedder, {
transformers: [oembedTransformer],
})
.use(html)
.process(exampleMarkdown)
console.log(result.toString())
}
go()
`
This will result in:
` Isn't it great!?html`My favorite YouTube video
This is a great
YouTube video. Watch it here:
width="200"
height="113"
src="https://www.youtube.com/embed/dQw4w9WgXcQ?feature=oembed"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
Some oembed providers offer special configuration via query parameters. You can
provide those via config:
`ts
// ...
import type {Config} from '@remark-embedder/transformer-oembed'
// ...
async function go() {
const result = await remark()
.use(remarkEmbedder, {
transformers: [
[
oembedTransformer,
{params: {theme: 'dark', dnt: true, omit_script: true}} as Config,
],
],
})
.use(html)
.process(https://twitter.com/kentcdodds/status/783161196945944580)
console.log(result.toString())
}
// ...
`
That results in (notice the data- attributes which are specific to [twitter's
oEmbed API][twitter-oembed-docs]):
`html`
I spent a few minutes working on this, just for you all. I promise, it wont
disappoint. Though it may surprise π
π
https://t.co/wgTJYYHOzD
β Kent C. Dodds (@kentcdodds)
href="https://twitter.com/kentcdodds/status/783161196945944580?ref_src=twsrc%5Etfw"
>October 4, 2016 >
This could also be used to provide an access token for providers that require
this (like [Instagram][instagram-oembed-docs]).
You can also provide configuration as a function so you can determine what
configuration to give based on the provider and/or the URL. Like so:
`ts`
const oembedConfig: Config = ({url, provider}) => {
if (provider.provider_name === 'Instagram') {
return {
params: {access_token: '{app-id}|{client-token}'},
}
}
}
const remarkEmbedderConfig = {
transformers: [[oembedTransformer, oembedConfig]],
}
// ... etc...
It's a long story... Check out the inspiration on
[@remark-embedder/core][@remark-embedder/core]
- [remark-oembed`][remark-oembed]: This one requires client-side JS to work
which was unacceptable for our use cases.
_Looking to contribute? Look for the [Good First Issue][good-first-issue]
label._
Please file an issue for bugs, missing documentation, or unexpected behavior.
[See Bugs][bugs]
Please file an issue to suggest new features. Vote on feature requests by adding
a π. This helps maintainers prioritize what to work on.
[See Feature Requests][requests]
Thanks goes to these people ([emoji key][emojis]):
Kent C. Dodds π» π π β οΈ | MichaΓ«l De Boey π» π π§ |
This project follows the [all-contributors][all-contributors] specification.
Contributions of any kind welcome!
MIT
[npm]: https://www.npmjs.com
[node]: https://nodejs.org
[build-badge]: https://img.shields.io/github/workflow/status/remark-embedder/transformer-oembed/validate?logo=github&style=flat-square
[build]: https://github.com/remark-embedder/transformer-oembed/actions?query=workflow%3Avalidate
[coverage-badge]: https://img.shields.io/codecov/c/github/remark-embedder/transformer-oembed.svg?style=flat-square
[coverage]: https://codecov.io/github/remark-embedder/transformer-oembed
[version-badge]: https://img.shields.io/npm/v/@remark-embedder/transformer-oembed.svg?style=flat-square
[package]: https://www.npmjs.com/package/@remark-embedder/transformer-oembed
[downloads-badge]: https://img.shields.io/npm/dm/@remark-embedder/transformer-oembed.svg?style=flat-square
[npmtrends]: https://www.npmtrends.com/@remark-embedder/transformer-oembed
[license-badge]: https://img.shields.io/npm/l/@remark-embedder/transformer-oembed.svg?style=flat-square
[license]: https://github.com/remark-embedder/transformer-oembed/blob/main/LICENSE
[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square
[prs]: https://makeapullrequest.com
[coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square
[coc]: https://github.com/remark-embedder/transformer-oembed/blob/main/CODE_OF_CONDUCT.md
[emojis]: https://github.com/all-contributors/all-contributors#emoji-key
[all-contributors]: https://github.com/all-contributors/all-contributors
[all-contributors-badge]: https://img.shields.io/github/all-contributors/remark-embedder/transformer-oembed?color=orange&style=flat-square
[bugs]: https://github.com/remark-embedder/transformer-oembed/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+sort%3Acreated-desc+label%3Abug
[requests]: https://github.com/remark-embedder/transformer-oembed/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+label%3Aenhancement
[good-first-issue]: https://github.com/remark-embedder/transformer-oembed/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+label%3Aenhancement+label%3A%22good+first+issue%22
[@remark-embedder/core]: https://github.com/remark-embedder/core
[instagram-oembed-docs]: https://developers.facebook.com/docs/instagram/oembed
[oembed.com]: https://oembed.com
[remark-oembed]: https://github.com/sergioramos/remark-oembed
[twitter-oembed-docs]: https://developer.twitter.com/en/docs/twitter-api/v1/tweets/post-and-engage/api-reference/get-statuses-oembed