state:empty
state:<translated
state:>=translated
state:needs-editing
has:suggestion
has:variant
has:screenshot
has:label
has:context
state:<translated AND NOT has:suggestion
has:comment
has:check
state:approved
state:translated
Loading…
New source string
testing_project / Documentation: reference/reference_lua/yaml — English
The string uses three dots (...) instead of an ellipsis character (…)
Reset
Additional explanation to clarify meaning or usage of the string.
Additional comma-separated flags to influence Weblate behavior.
read-only is inherited from testing_project/Documentation: reference/reference_lua/yaml — English.
read-only
---
- '["A","B"]'
...
tarantool> yaml.encode(setmetatable({'A', 'B'}, { __serialize="map"}))
---
- '{"1":"A","2":"B"}'
...
tarantool> yaml.encode({setmetatable({f1 = 'A', f2 = 'B'}, { __serialize="map"})})
---
- '[{"f2":"B","f1":"A"}]'
...
tarantool> yaml.encode({setmetatable({f1 = 'A', f2 = 'B'}, { __serialize="seq"})})
---
- '[[]]'
...