Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
micromark-extension-mdx-md
Advanced tools
micromark extension to turn some markdown features off for MDX
micromark extension to turn some markdown features off for MDX.
This package contains an extension to turn off some markdown constructs when parsing.
This project is useful when you want to disable support for code (indented), autolinks, and HTML (flow and text) in markdown.
You can use this extension when you are working with micromark
.
To support all MDX features, use
micromark-extension-mdxjs
instead.
All these packages are used in remark-mdx
, which focusses on
making it easier to transform content by abstracting these internals away.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install micromark-extension-mdx-md
In Deno with esm.sh
:
import {mdxMd} from 'https://esm.sh/micromark-extension-mdx-md@2'
In browsers with esm.sh
:
<script type="module">
import {mdxMd} from 'https://esm.sh/micromark-extension-mdx-md@2?bundle'
</script>
import {micromark} from 'micromark'
import {mdxMd} from 'micromark-extension-mdx-md'
const output = micromark('\ta', {extensions: [mdxMd()]})
console.log(output)
Yields:
<p>a</p>
This package exports the identifier mdxMd
.
There is no default export.
mdxMd()
Create an extension for micromark
to disable some CommonMark syntax (code
(indented), autolinks, and HTML (flow and text)) for MDX.
Extension for micromark
that can be passed in extensions
to disable some
CommonMark syntax for MDX (Extension
).
To improve authoring the new constructs MDX adds (ESM, expressions, and JSX), some markdown features are turned off by this extension. There are good alternatives.
Use fenced code instead. Change the following markdown:
console.log(1)
…into:
```js
console.log(1)
```
Use links (with a resource or a reference) instead. Change the following markdown:
<https://some-link-here.com>
…into:
[descriptive text](https://and-the-link-here.com)
Use JSX instead: change <img>
into <img />
.
Not supporting HTML also means that HTML comments are not supported.
Use a comment in an empty expression instead.
Change <!-- comment -->
into {/* comment */}
.
This package is fully typed with TypeScript. It exports no additional types.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, micromark-extension-mdx-md@^2
,
compatible with Node.js 16.
This package works with micromark@^3
.
This package is safe.
micromark-extension-mdxjs
— support all of MDXremark-mdx
— support all of MDX in remarkSee contributing.md
in micromark/.github
for ways to get
started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
FAQs
micromark extension to turn some markdown features off for MDX
The npm package micromark-extension-mdx-md receives a total of 1,451,084 weekly downloads. As such, micromark-extension-mdx-md popularity was classified as popular.
We found that micromark-extension-mdx-md 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.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.