Skip to content

Commit

Permalink
feat(index): add support for output for ps and wpml formats
Browse files Browse the repository at this point in the history
  • Loading branch information
Frazer Smith committed Oct 21, 2020
1 parent 20ed0c6 commit df88f2b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,11 @@ class UnRTF {
* @param {boolean=} options.noRemap - Disable charset conversion (only works for 8-bit charsets).
* @param {boolean=} options.outputHtml - Generate HTML output.
* @param {boolean=} options.outputLatex - Generate LaTeX output.
* @param {boolean=} options.outputPs - Generate PostScript (PS) output.
* @param {boolean=} options.outputRtf - Generate RTF output.
* @param {boolean=} options.outputText - Generate ASCII text output.
* @param {boolean=} options.outputVt - Generate text output with VT100 escape codes.
* @param {boolean=} options.outputWpml - Generate WPML output.
* @param {boolean=} options.printVersionInfo - Print copyright and version info.
* @param {boolean=} options.quiet - Do not print any messages or errors.
* @param {string} file - Filepath of the RTF file to read.
Expand All @@ -96,9 +98,11 @@ class UnRTF {
noRemap: { arg: '--noremap', type: 'boolean' },
outputHtml: { arg: '--html', type: 'boolean' },
outputLatex: { arg: '--latex', type: 'boolean' },
outputPs: { arg: '--ps', type: 'boolean' },
outputRtf: { arg: '--rtf', type: 'boolean' },
outputText: { arg: '--text', type: 'boolean' },
outputVt: { arg: '--vt', type: 'boolean' },
outputWpml: { arg: '--wpml', type: 'boolean' },
quiet: { arg: '--quiet', type: 'boolean' },
printVersionInfo: { arg: '--version', type: 'boolean' }
};
Expand Down

0 comments on commit df88f2b

Please sign in to comment.