Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kanakkholwal/nexo-mdx

Markdown Editor with React + TS + shadcn UI / Tailwind css
https://github.com/kanakkholwal/nexo-mdx

lightweight markdown markdown-editor open-source reactjs shadcn-ui tailwindcss typescript

Last synced: 3 days ago
JSON representation

Markdown Editor with React + TS + shadcn UI / Tailwind css

Awesome Lists containing this project

README

        

# Nexo MDX Editor

- A Markdown editor of React component
- Supports TypeScript
- Support native textarea accessability in form
- Full markdown support
- Supports pluggable function bars
- Full control over UI
- Build with Shadcn UI components, Inherits your tailwind/shadcn ui theme
- Checkout more [remark plugins](https://github.com/kanakkholwal/remark-plugins)
## Install

```shell
npm install nexo-mdx --save
# or
bun install nexo-mdx
```

## Basic usage

Following steps:

- Import nexo-mdx
- Register plugins if required
- Start usage.

```ts
import NexoMdxEditor from 'nexo-mdx';
import React from 'react';

export default function MDXEditor(){

const [mdValue,setMdValue] = React.useState("");

return setMdValue(value)} />
}

```