Skip to content

Commit ae9a0b2

Browse files
authored
Update rtf-to-html.js
Fix typo.
1 parent 9cab278 commit ae9a0b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtf-to-html.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function rtfToHTML (doc, options) {
4444
template: outputTemplate
4545
}, options || {})
4646
const content = doc.content
47-
.map(para => renderPara(para.content ? para : {content: [para], style: {}}, defaults)))
47+
.map(para => renderPara(para.content ? para : {content: [para], style: {}}, defaults))
4848
.filter(html => html != null)
4949
.join(defaults.paraBreaks)
5050
return defaults.template(doc, defaults, content)

0 commit comments

Comments
 (0)