
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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 736 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.