vdoc: help

pull/5250/head
Daniel Däschle 2020-06-06 17:41:44 +02:00 committed by GitHub
parent fb6be080fb
commit 32463e94f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

View File

@ -629,7 +629,7 @@ fn (cfg DocConfig) get_resource(name string, minify bool) string {
fn main() {
args := os.args[2..]
if args.len == 0 || args[0] == 'help' {
if args.len == 0 || args[0] in ['help', '-h', '--help'] {
os.system('${@VEXE} help doc')
exit(0)
}

View File

@ -11,13 +11,13 @@ and prints or saves them to its desired format. It can generate HTML, JSON,
or Markdown format.
Options:
-all Includes private and public functions/methods/structs/consts/enums.
-f Specifies the output format to be used.
-inline-assets
Embeds the contents of the CSS and JS assets into the webpage directly.
-l Show the locations of the generated signatures. (For plaintext only)
-m Generate docs for modules listed in that folder.
-o Specifies the output file/folder path where to store the generated docs.
-s Serve HTML-generated docs via HTTP.
-r Include README.md to docs if present.
-v Enables verbose logging. For debugging purposes.
-all Includes private and public functions/methods/structs/consts/enums.
-f Specifies the output format to be used.
-inline-assets Embeds the contents of the CSS and JS assets into the webpage directly.
-l Show the locations of the generated signatures. (For plaintext only)
-m Generate docs for modules listed in that folder.
-o Specifies the output file/folder path where to store the generated docs.
-s Serve HTML-generated docs via HTTP.
-r Include README.md to docs if present.
-v Enables verbose logging. For debugging purposes.
-h, -help Prints this help text.