mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vdoc: help
This commit is contained in:
parent
fb6be080fb
commit
32463e94f5
@ -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)
|
||||
}
|
||||
|
@ -13,11 +13,11 @@ 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.
|
||||
-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.
|
Loading…
Reference in New Issue
Block a user