We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
503f039
Do not escape square brackets in Lua strings. These escapes were removed in Lua 5.1.
# Previously '[]'.to_lua # \[\] # Now '[]'.to_lua # []
5822000
Do not use the ["key"] syntax in lua tables if the key is a valid identifier
["key"]
# Key is a valid identifier {key: 'value'}.to_lua # {key="value"} # Key is not a valid identifier {123: 'value'}.to_lua # {["123"]="value"}
c4f53dd
2c3270c
.to_lua(pretty: true)