@rasenganjs/mdx v1.1.1
Rasengan MDX Plugin
MDX plugin for Rasengan.Js
Installation
You can install the @rasenganjs/mdx package using the following command:
npm install @rasenganjs/mdxor
yarn add @rasenganjs/mdxUsage
Here is an example of how you can use the @rasenganjs/mdx package:
Basic Usage
- Setup the
rasengan.config.jsfile
Import the mdx plugin into the rasengan.config.js file.
import { defineConfig } from 'rasengan';
import mdx from '@rasenganjs/mdx';
export default defineConfig({
vite: {
plugins: [mdx()],
},
});- Create your
markdownfile.
Create a markdown file inside the app folder with the pattern [name].page.mdx or [name].page.md
---
path: /blog
metadata:
title: Blog page
description: Discover our new blog posts
---
import Button from '@/components/Button';
# Blog page
This is a `blog` page.
<Button>Click Me</Button>- Use your
markdownfile.
Inside the app.router.ts file, import your Markdown Component and the MDXRenderer component from @rasenganjs/mdx and add it to defineRouter option like this:
import { RouterComponent, defineRouter } from 'rasengan';
import AppLayout from '@app/app.layout';
import Blog from '@app/blog.page.mdx';
import { MDXRenderer } from '@rasenganjs/mdx';
class AppRouter extends RouterComponent {}
export default defineRouter({
imports: [],
layout: AppLayout,
pages: [Blog],
MDXRenderer,
})(AppRouter);The MDXRenderer component is used to render the Markdown content.
- Load the
cssfile from@rasenganjs/mdxpackage into yourmain.tsfile.
import "@rasenganjs/mdx/styles/rasengan-mdx.min.css";
import { type AppProps } from "rasengan";
import AppRouter from "@/app/app.router";
export default function App({ children, Component }: AppProps) {
return <Component router={AppRouter}>{children}</Component>;
}Now visit http://localhost:5320/blog
Community
The Rasengan.js community can be found on GitHub Discussions where you can ask questions, voice ideas, and share your projects with other people.
We also have a Twitter account where you can follow us to get the latest news about Rasengan.js.
License
Authors
Here is the authors list:
- Dilane Kombou (@dilanekombou)
7 months ago
9 months ago
9 months ago
10 months ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago