1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
[include ../../format/json.inc]
[section Configuration]
The JSON export plugin recognizes the following configuration
variables and changes its behaviour as they specify.
[list_begin arguments]
[arg_def boolean indented]
If this flag is set the plugin will break the generated JSON code
across lines and indent it according to its inner structure, with each
key of a dictionary on a separate line.
[para]
If this flag is not set (the default), the whole JSON object will be
written on a single line, with minimum spacing between all elements.
[arg_def boolean aligned]
If this flag is set the generator ensures that the values for the keys
in a dictionary are vertically aligned with each other, for a nice
table effect. To make this work this also implies that [var indented]
is set.
[para]
If this flag is not set (the default), the output is formatted as per
the value of [var indented], without trying to align the values for
dictionary keys.
[list_end]
[emph Note] that this plugin ignores the standard configuration
variables [var user], [var format], [var file], and [var map] and
their values.
|