Skip to content

isNeilLin/html2rtf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

html2rtf

install

npm install html2rtf --save or yarn add html2rtf

Example

const html2rtf = require('html2rtf');
const path = require('path');
const filename = path.join(__dirname,'example.rtf');
const html = `<div>
    <p>Welcome to RTF!</p>
    <p>This is a example</p>
</div>`;
html2rtf(html,filename).then(res=>{
    console.log('done')
}).catch(e=>{
    console.log(e)
})

Support Tags

'div','p','h1','h2','h3','h4','h5','h6','a','ol','ul','li','center','table','td','th','tr','sup','b','i','u','sub'

Support Styles

font-size, line-height, margin-top, text-indent

TODO

support color

About

convert html to rtf

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published