We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab858c0 commit ac0dcebCopy full SHA for ac0dceb
js/package/bin/convert.cmd.js
@@ -36,6 +36,11 @@ yargs.usage('Usage: mldoc convert [options]')
36
type: 'string',
37
default: 'utf8'
38
})
39
+ .option('with-pos', {
40
+ describe: 'Include positions meta',
41
+ type: 'boolean',
42
+ default: false
43
+ })
44
.option('a', {
45
alias: 'append',
46
describe: 'Append data to output instead of overwriting',
@@ -95,7 +100,7 @@ function run () {
95
100
"format": format,
96
101
"heading_to_list": false,
97
102
"exporting_keep_properties": true,
98
- "inline_type_with_pos": false,
103
+ "inline_type_with_pos": argv.withPos,
99
104
"export_md_remove_options": [],
105
"hiccup_in_block": true,
106
});
0 commit comments