
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
storybook-addon-mdx-embed
Advanced tools
Embed 3rd party media content in MDX - no import required
MDX Embed allows you to easily embed popular 3rd party media content such as YouTube videos, Tweets, Instagram posts
and many more straight into your .mdx
- no import required!
npm install mdx-embed storybook-addon-mdx-embed --save
Add storybook-addon-mdx-embed
to your addons
array in main.js
// main.js
module.exports = {
...
addons: ['storybook-addon-mdx-embed']
};
The plugin works by using Storybooks' parameters export and wrapping the docs children with the MDXEmbedProvider
.
If you encounter any issues with the addon you could try manually including the MDXEmbedProvider
in you project.
Ensure you have removed the addon from your dependencies and addons array in main.js
then add the following to
preview.js
// preview.js
import React from 'react';
import { DocsContainer } from '@storybook/addon-docs/blocks';
import { MDXEmbedProvider } from 'mdx-embed';
export const parameters = {
docs: {
container: ({ children, context }) => (
<DocsContainer context={context}>
<MDXEmbedProvider>{children}</MDXEmbedProvider>
</DocsContainer>
),
},
};
For more information about how to install the package please see the docs
FAQs
Embed 3rd party media content in MDX - no import required
The npm package storybook-addon-mdx-embed receives a total of 689 weekly downloads. As such, storybook-addon-mdx-embed popularity was classified as not popular.
We found that storybook-addon-mdx-embed demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.