====== Tabli - Options ======
===== About =====
An ''option'' is a property that set a ''value'' to a ''name''.
An ''option'' is used to passed parameters to the [[docs:tabli:command|command]].
===== Syntax =====
[[docs:tabli:tabli|Tabulify]] supports two ''option'' format:
* a [[#long format|long]] where the full name of the option is given
* and a [[#short format|short]] one where only **1** letter is given
==== Long format ====
The long ''option'' format start with ''%%--%%'' followed by the option name.
Example: the option ''longOptionName'' will got the value ''value''
tabli module command --longOptionName value
==== Short format ====
The short option format start with ''-'' followed by one letter.
tabli module command -l [value]
If the option is a [[docs:tabli:flag|flag]], the value is ''true'' by default and is therefore not mandatory.
===== Example =====
==== Long format ====
tabli --help
==== Short format ====
tabli -h