Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhmushan/rmd
React markdown component
https://github.com/zhmushan/rmd
Last synced: 15 days ago
JSON representation
React markdown component
- Host: GitHub
- URL: https://github.com/zhmushan/rmd
- Owner: zhmushan
- License: mit
- Created: 2020-03-12T14:38:13.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-13T05:41:34.000Z (almost 5 years ago)
- Last Synced: 2024-12-10T11:55:15.103Z (16 days ago)
- Language: TypeScript
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rmd - React Markdown
## Install
```sh
yarn add zhmushan/rmd
```## Usage
```tsx
import React from "react";
import ReactDOM from "react-dom";
import { Markdown } from "rmd";ReactDOM.render(<>
{/* with url */}
{/* with local */}
{/* with simple string */}
# Hello
>, document.getElementById("root"));
```