# rtftohtml
**Repository Path**: panzdguof/rtftohtml
## Basic Information
- **Project Name**: rtftohtml
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-09-06
- **Last Updated**: 2025-02-21
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# RTF to HTML converter
A simple RTF to HTML converter. Yes, I know there are others around, but
they work asynchronously. Since I needed to use this component in
CKEditor, I need a synchronous solution.
## License
Copyright 2016-2019 Michigan State University
@charles-owen/rtftohtml is released under the MIT license.
* * *
Written and maintained by Charles B. Owen
## Install
```shell
yarn add @charles-owen/rtftohtml
```
## Usage
```js
import {RtfToHtml} from '@charles-owen/rtftohtml'
const converter = new RtfToHtml()
const html = converter.convert(rtf)
```