Name
SetSerializeOptions -- set serialization options (V10.0)
Synopsis
SetSerializeOptions(t)
Function
This function can be used to set some options for the serializer. You have to pass a table in t. The table can contain the following tags:

NoLowerCase:
Set this to True if the serializer shouldn't automatically convert all key names to lower case. Hollywood's inbuilt JSON serializer currently converts all key names to lower case when using the serialization modes #SERIALIZEMODE_HOLLYWOOD and #SERIALIZEMODE_NAMED. External serializers like plugins might interpret this option differently. Defaults to False.

Note that this function will globally change the serialization options. You can also change the serialization options locally by setting the Options tag in the optional table arguments of functions like SerializeTable(). See SerializeTable for details.

Inputs
t
table containing serialization options (see above)

Show TOC