Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Usage: pandiff [OPTIONS] FILE1 FILE2
-h, --help
--highlight-style=STRING
--lua-filter=FILE
--template=STRING
--mathjax=BOOL
--mathml=BOOL
-o, --output=FILE
Expand Down
1 change: 1 addition & 0 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const optionDefinitions: commandLineArgs.OptionDefinition[] = [
{name: 'help', alias: 'h', type: Boolean},
{name: 'highlight-style', type: String},
{name: 'lua-filter', type: File, multiple: true},
{name: 'template', type: String},
{name: 'mathjax', type: Boolean},
{name: 'mathml', type: Boolean},
{name: 'output', alias: 'o', type: File},
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ async function postrender(text: string, opts: pandiff.Options = {}) {
opts,
'highlight-style',
'output',
'template',
'pdf-engine',
'metadata-file',
'reference-doc',
Expand Down Expand Up @@ -470,6 +471,7 @@ namespace pandiff { // eslint-disable-line
help?: boolean;
'highlight-style'?: string;
'lua-filter'?: File[];
template?: string;
output?: File;
'pdf-engine'?: string;
'reference-links'?: boolean;
Expand Down
Loading