We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Running himl on nested lists results in a flattened list. For example:
himl
test: - [1, 2] - [3, 4]
becomes the following after himl processes it.
test: - 1 - 2 - 3 - 4
I believe that himl should not modify the structure of this data.
Activity