Is there a way to support indentation in inline tables? So instead of doing:
user = { name="abc", password = false }
We can do:
user = {
name="abc",
password = false
}
This is especially useful when we are dealing with many fields in the inline table.
Is there a way to support indentation in inline tables? So instead of doing:
We can do:
This is especially useful when we are dealing with many fields in the inline table.