Created by: Moult
Referring to #3555 (closed) - after playing around with ported Grasshopper nodes, I think that strings should use the same convention as numbers. E.g., they should nest like this: [['foo bar baz']]
. I have tested this convention with the ladybug nodes I am working on, and it works extremely well :)
Currently, the note node splits text like this: [[['foo', 'bar', 'baz']]]
and the filepath node doesn't nest, like this: ['foo bar baz']
. This PR standardises both nodes to output [['foo bar baz']]
.
If this PR is approved, I can build a new node that does text split()
, in case people prefer the splitted text.