Skip to content

Commit f0580fc

Browse files
committed
Set parser flag contents to lowercase.
1 parent ef8ec8b commit f0580fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/doxdox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ${chalk.yellow(' -t, --title')} Sets title.
6060
const config = {
6161
'description': args.flags['--description'] || args.flags['-d'] || pkg.description || '',
6262
'layout': (args.flags['--layout'] || args.flags['-l'] || 'markdown').toLowerCase(),
63-
'parser': args.flags['--parser'] || args.flags['-r'] || 'dox',
63+
'parser': (args.flags['--parser'] || args.flags['-r'] || 'dox').toLowerCase(),
6464
'title': args.flags['--title'] || args.flags['-t'] || pkg.name || 'Untitled Project'
6565
};
6666

0 commit comments

Comments
 (0)