
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
mdjsx-loader
Advanced tools
A markdown loader with embedded jsx
We wanted an expressive way to write markdown documentation for a react style-guide.
Add this loader to your preferred filetypes. We use the .md extension.
// In webpack.config.js
module.exports = {
/* Omitted */
module: {
loaders: [
{
test: /\.md$/,
loaders: ['babel', 'mdjsx']
}
]
}
}
Notice the dependency on the
babelloader. That is because themdjsxloader creates an es6 module with jsx syntax.
mdjsx-loaderexports two values.
import Component, { attributes } from 'my-md-file.md';
Component // a react component which includes the compiled markdown and react components
attributes // the front-matter attributes from the markdown file
$importsspecial front-matter attributes allows you to import any javascript module
---
$imports:
'{ A, B }': 'module1'
'* as C': 'module2'
D: 'module3'
---
### My title
Use imported react components
<A>
<D />
<C.X>
Hello there
</C.X>
</A>
$attributesspecial variable gives you access to all front-matter attributes (except for the $imports)
---
propA: 'Hello World'
---
### My title
Use front-matter attributes
<span>{$attributes.propA}</span>
$propsspecial variable gives you access to the component props.
in md file
# Hello world
<span>{$props.content}</span>
consumer
import Component from 'my-md-file.md';
import ReactDom from 'react-dom';
ReactDom.render(
document.getElementById('root'),
<Component content="This will be interpolated in span" />
)
FAQs
> A markdown loader with embedded jsx
We found that mdjsx-loader 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
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.