From 2e7d1178ae3caf0791c021b4c39173485ef00c4a Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 3 Sep 2024 11:37:22 -0500 Subject: [PATCH] Better documentation of defaults --- examples/etc/pgwui.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/etc/pgwui.yaml b/examples/etc/pgwui.yaml index 1d3f9f9..a500eeb 100644 --- a/examples/etc/pgwui.yaml +++ b/examples/etc/pgwui.yaml @@ -275,7 +275,7 @@ app: # # The available choices are: # yes-always Always transform some data into NULL. - # choice-yes Present a checkbox, default to "yes". + # choice-yes Present a checkbox, default to "yes". (default) # choice-no Present a checkbox, default to "no". # no-never Never transform data into NULL. # @@ -283,7 +283,7 @@ app: # The format of the uploaded file # # The available choices are: - # csv The CSV format. + # csv The CSV format. (default) # tab Tab separated values. @@ -297,7 +297,7 @@ app: # null: 'choice-yes' # file_format: 'csv' # - # literal_column_headings: 'no-never' + # literal_column_headings: 'no-never' (default) # Take uploaded column headings literally? # See pgwui_upload above for details. # @@ -342,15 +342,15 @@ app: # It is recommended to enclose file names which contain spaces, or begin # with a digit, in single quotes. But any YAML syntax is valid. # - # trim: 'choice-yes' + # trim: 'choice-yes' (default) # Remove leading and trailing whitespace. # See pgwui_upload above for details. # - # null: 'choice-yes' + # null: 'choice-yes' (default) # Insert NULL values. # See pgwui_upload above for details. # - # file_format: 'csv' + # file_format: 'csv' (default) # The format of the uploaded files. # See pgwui_upload above for details. -- 2.34.1