
Product
Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.
vite-plugin-solid-markdown
Advanced tools
Compile Markdown to SolidJS component.
Install
npm i vite-plugin-solid-markdown -D # yarn add vite-plugin-solid-markdown -D
Add it to vite.config.js
⚠️ Note:
md()should be placed beforesolid()
// vite.config.js
import solid from 'solid-start/vite'
import { defineConfig } from 'vite'
import md from 'vite-plugin-solid-markdown'
export default defineConfig({
plugins: [
md(),
solid({
extensions: ['.mdx', '.md'],
}),
],
})
And import it as a normal Solid component
import ReadMe from '../../README.md'
export default function Home() {
return (
<div>
<ReadMe />
</div>
)
}
You can even use Solid components inside your markdown, for example
import Counter from '~/components/Counter'
<Counter />
Frontmatter will be parsed and inject into Solid's instance data frontmatter field.
For example:
export const name = 'My Cool App'
export const title = 'Hello ' + name + '!'
# This is {name}
Will be rendered as
<h1>This is My Cool App</h1>
It will also be passed to the wrapper component's props if you have set wrapperComponent option.
// vite.config.js
import solidPlugin from 'solid-start/vite'
import { defineConfig } from 'vite'
import Markdown from 'vite-plugin-solid-markdown'
import remarkPrism from 'remark-prism'
export default defineConfig({
plugins: [
solidPlugin({
extensions: ['.mdx', '.md'],
}),
Markdown({
wrapperClasses: 'prose prose-sm m-auto text-left',
remarkPlugins: [remarkPrism],
// more options will be added in the future
}),
],
})
See the tsdoc for more advanced options.
See Rehype plugins for more rehype plugins.
See Remark plugins for more remark plugins.
See the /example.
Or the pre-configured starter template Vitesse.
declare module '*.md' {
import type { Component } from 'solid-js'
const Component: Component
export default Component
}
MIT License © 2020-PRESENT xbmlz
FAQs
Compile Markdown to SolidJS component
We found that vite-plugin-solid-markdown 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.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.

Research
More than 140 Mastra npm packages were compromised in a supply chain attack that used a typosquatted dependency to deliver a cross-platform infostealer during installation.

Research
/Security News
A new npm package tests AI malware scanners with prompt injection, safety-triggering comments, context flooding, and obfuscated JavaScript.