
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
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
babel
loader. That is because themdjsx
loader creates an es6 module with jsx syntax.
mdjsx-loader
exports 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
$imports
special 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>
$attributes
special 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>
$props
special 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
The npm package mdjsx-loader receives a total of 14 weekly downloads. As such, mdjsx-loader popularity was classified as not popular.
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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.