diff --git a/api/clikt-mordant-markdown/navigation.html b/api/clikt-mordant-markdown/navigation.html
index 493971a6..6ab3024f 100755
--- a/api/clikt-mordant-markdown/navigation.html
+++ b/api/clikt-mordant-markdown/navigation.html
@@ -17,12 +17,17 @@
Core
A version of CliktCommand that supports a suspending run function.
A version of CliktCommand that supports a suspending run function.
A SuspendingCliktCommand that has a default implementation of run that is a no-op.
A shortcut for accessing the terminal from the currentContext
Set up this command's context to use Mordant for rendering.
Test this command, returning a result that captures the output and result status code.
A SuspendingCliktCommand that has a default implementation of run that is a no-op.
A CoreCliktCommand that has a default implementation of CliktCommand.run that is a no-op.
A CliktCommand that has a default implementation of CliktCommand.run that is a no-op.
A CoreCliktCommand that has a default implementation of CliktCommand.run that is a no-op.
A CliktCommand that has a default implementation of CliktCommand.run that is a no-op.
A version of CoreCliktCommand that returns a value from the run function, which is then passed to subcommands.
This command works best if you set allowMultipleSubcommands to true
.
A version of CoreCliktCommand that returns a value from the run function, which is then passed to subcommands.
This command works best if you set allowMultipleSubcommands to true
.
A version of CoreCliktCommand that supports a suspending run function.
A version of CoreCliktCommand that supports a suspending run function.
A CoreSuspendingCliktCommand that has a default implementation of run that is a no-op.
If true, allow multiple of this command's subcommands to be called sequentially. This will disable allowInterspersedArgs
on the context of this command and its descendants.
The envvar to use to enable shell autocomplete script generation. Set to null to disable generation.
The name of this command, used in help output.
This command's context.
If true, don't display this command in help output when used as a subcommand.
Used when this command has subcommands, and this command is called without a subcommand. If true, run will be called. By default, a PrintHelpMessage is thrown instead.
If this command is called with no values on the command line, print a help message (by throwing PrintHelpMessage) if this is true
, otherwise run normally.
If true, any options on the command line whose names aren't valid will be parsed as an argument rather than reporting an error. You'll need to define an argument().multiple()
to collect these options, or an error will still be reported. Unknown short option flags grouped with other flags on the command line will always be reported as errors.
Return the parameters that should be sent to the help formatter when this command's getFormattedHelp is called.
Create a property delegate argument.
Configure this command's Context.
Echo the string returned by getFormattedHelp.
Find the closest object of type T, or null
Find the closest object of type T, setting context.obj
if one is not found.
Return the help string for this command, optionally with an error.
Help text to display at the end of the help output, after any parameters.
Add a message to be printed after parsing
Parse the command line and print helpful output if any errors occur.
Declare a set of two or more mutually exclusive options.
Create a property delegate option.
Parse the command line and throw an exception if parsing fails.
Register an argument with this command.
Get a read-only list of arguments registered in this command (e.g. via registerArgument or an argument delegate)
Get a read-only list of options registered in this command (e.g. via registerOption or an option delegate)
Get a read-only list of groups registered in this command (e.g. via registerOptionGroup or an OptionGroup delegate)
The names of all direct children of this command
Get a read-only list of commands registered as subcommands of this command.
Register an option with this command or group.
Register an option with this command.
Register a group with this command.
Find the closest object of type T, or throw a NullPointerException
Create a new context for this command and all its subcommands recursively.
Perform actions after parsing is complete and this command is invoked.
This is called after command line parsing is complete. If this command is a subcommand, this will only be called if the subcommand is invoked.
If one of this command's subcommands is invoked, this is called before the subcommand's arguments are parsed.
A CoreSuspendingCliktCommand that has a default implementation of run that is a no-op.
Help text to display at the end of the help output, after any parameters.
A CoreChainedCliktCommand subcommand that will print a completion script for the given shell when invoked.
If true, allow multiple of this command's subcommands to be called sequentially. This will disable allowInterspersedArgs
on the context of this command and its descendants.
The envvar to use to enable shell autocomplete script generation. Set to null to disable generation.
The name of this command, used in help output.
This command's context.
If true, don't display this command in help output when used as a subcommand.
Used when this command has subcommands, and this command is called without a subcommand. If true, run will be called. By default, a PrintHelpMessage is thrown instead.
If this command is called with no values on the command line, print a help message (by throwing PrintHelpMessage) if this is true
, otherwise run normally.
If true, any options on the command line whose names aren't valid will be parsed as an argument rather than reporting an error. You'll need to define an argument().multiple()
to collect these options, or an error will still be reported. Unknown short option flags grouped with other flags on the command line will always be reported as errors.
Return the parameters that should be sent to the help formatter when this command's getFormattedHelp is called.
Create a property delegate argument.
Configure this command's Context.
Echo the string returned by getFormattedHelp.
Find the closest object of type T, or null
Find the closest object of type T, setting context.obj
if one is not found.
Return the help string for this command, optionally with an error.
Help text to display at the end of the help output, after any parameters.
Add a message to be printed after parsing
Declare a set of two or more mutually exclusive options.
Create a property delegate option.
Register an argument with this command.
Get a read-only list of arguments registered in this command (e.g. via registerArgument or an argument delegate)
Get a read-only list of options registered in this command (e.g. via registerOption or an option delegate)
Get a read-only list of groups registered in this command (e.g. via registerOptionGroup or an OptionGroup delegate)
The names of all direct children of this command
Get a read-only list of commands registered as subcommands of this command.
Register an option with this command or group.
Register an option with this command.
Register a group with this command.
Find the closest object of type T, or throw a NullPointerException
Create a new context for this command and all its subcommands recursively.
Perform actions after parsing is complete and this command is invoked.
This takes the value returned by the previously invoked command and returns a new value.
This is called after command line parsing is complete. If this command is a subcommand, this will only be called if the subcommand is invoked.
If one of this command's subcommands is invoked, this is called before the subcommand's arguments are parsed.
Help text to display at the end of the help output, after any parameters.
A CoreSuspendingCliktCommand subcommand that will print a completion script for the given shell when invoked.
If true, allow multiple of this command's subcommands to be called sequentially. This will disable allowInterspersedArgs
on the context of this command and its descendants.
The envvar to use to enable shell autocomplete script generation. Set to null to disable generation.
The name of this command, used in help output.
This command's context.
If true, don't display this command in help output when used as a subcommand.
Used when this command has subcommands, and this command is called without a subcommand. If true, run will be called. By default, a PrintHelpMessage is thrown instead.
If this command is called with no values on the command line, print a help message (by throwing PrintHelpMessage) if this is true
, otherwise run normally.
If true, any options on the command line whose names aren't valid will be parsed as an argument rather than reporting an error. You'll need to define an argument().multiple()
to collect these options, or an error will still be reported. Unknown short option flags grouped with other flags on the command line will always be reported as errors.
Return the parameters that should be sent to the help formatter when this command's getFormattedHelp is called.
Create a property delegate argument.
Configure this command's Context.
Echo the string returned by getFormattedHelp.
Find the closest object of type T, or null
Find the closest object of type T, setting context.obj
if one is not found.
Return the help string for this command, optionally with an error.
Help text to display at the end of the help output, after any parameters.
Add a message to be printed after parsing
Parse the command line and print helpful output if any errors occur.
Declare a set of two or more mutually exclusive options.
Create a property delegate option.
Parse the command line and throw an exception if parsing fails.
Register an argument with this command.
Get a read-only list of arguments registered in this command (e.g. via registerArgument or an argument delegate)
Get a read-only list of options registered in this command (e.g. via registerOption or an option delegate)
Get a read-only list of groups registered in this command (e.g. via registerOptionGroup or an OptionGroup delegate)
The names of all direct children of this command
Get a read-only list of commands registered as subcommands of this command.
Register an option with this command or group.
Register an option with this command.
Register a group with this command.
Find the closest object of type T, or throw a NullPointerException
Create a new context for this command and all its subcommands recursively.
Perform actions after parsing is complete and this command is invoked.
This is called after command line parsing is complete. If this command is a subcommand, this will only be called if the subcommand is invoked.
If one of this command's subcommands is invoked, this is called before the subcommand's arguments are parsed.
A CoreChainedCliktCommand subcommand that will print a completion script for the given shell when invoked.
A CoreSuspendingCliktCommand subcommand that will print a completion script for the given shell when invoked.
An option was provided that does not exist.
An option was provided that does not exist.
An option was provided that does not exist.
An option was provided that does not exist.
Message for NoSuchOption when a subcommand has an option with the same name
Message for NoSuchOption when a subcommand has an option with the same name