We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e6fd59 commit 2adbef4Copy full SHA for 2adbef4
bin/apidoc
@@ -56,6 +56,8 @@ var argv = nomnom
56
57
.option('line-ending', { help: 'Turn off autodetect line-ending. Allowed values: LF, CR, CRLF.' })
58
59
+ .option('encoding', {'default': 'utf-8', help : 'Set the encoding of the source code. Default is UTF-8.'})
60
+
61
.parse()
62
;
63
@@ -102,6 +104,7 @@ var options = {
102
104
simulate : argv['simulate'],
103
105
markdown : argv['markdown'],
106
lineEnding : argv['line-ending'],
107
+ encoding : argv['encoding'],
108
};
109
110
if (apidoc.createDoc(options) === false) {
0 commit comments