
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
exerslide-plugin-markdown-converter
Advanced tools
Converts Markdown to a React element. It is based on markdown-it but extends the renderer to provide the following features.
This converter uses highlight.js for code block syntax highlighting. To keep the JavaScript bundle file size small, this plugin also includes a custom slide transform which looks for language names in code fences:
```html
<div>HTML</div>
```
Only the highlight definitions for the detected languages are included.
When linking to another slide (via ID (recommended) or slide number), you can
omit the link text: [](#/intro). In that case, the title of slide will be
used as link text.
The markdown converter uses the references config option passed (by default)
to exerslide. This allows you do keep URLs in a single file and use them
across multiple slides. All you need to do is use the name / key of the URL.
Example:
references.yml
markdown-it: https://github.com/markdown-it/markdown-it
slide.md
My [markdown parser][markdown-it].
You can add plugins to the markdown parser by setting the markdown-converter
option of the exerslide config. This is supposed to be a function that gets
passed an instance of the markdown parser.
Example:
js/presentation.js
present({
// ...
'markdown-converter': function(md) {
md.use(somePlugin);
},
});
FAQs
An HTML to React element converter for exerslide.
The npm package exerslide-plugin-markdown-converter receives a total of 2 weekly downloads. As such, exerslide-plugin-markdown-converter popularity was classified as not popular.
We found that exerslide-plugin-markdown-converter 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

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.