The console forms the bridge between Hexo and its users. It registers and describes the available console commands.
Synopsis
hexo.extend.console.register(name, desc, options, function (args) { |
Argument | Description |
---|---|
name |
Name |
desc |
Description |
options |
Options |
An argument args
will be passed into the function. This is the argument that users type into the terminal. It’s parsed by Minimist.
Options
usage
The usage of a console command. For example:
{ |
arguments
The description of each argument of a console command. For example:
{ |
options
The description of each option of a console command. For example:
{ |
desc
More detailed information about a console command.
Example
hexo.extend.console.register( |