Created by: Moult
Addressed problem description
In #3565 it was identified that text nesting was inconsistent, and that the Note node actually implicitly split text. As part of the proposal to standardise text nesting, I also suggested that for those who preferred the old behaviour of split text, a new split node would be added. As seen in #3618 (closed) - users need this split node :) so here it is!
Solution description
In the old Note node, if you typed 'foo bar'
, it would come out as [[['foo', 'bar']]]
. Now it comes out as [['foo bar']]
. If you then apply this new explicit split mode, it will split (by whitespace, but maybe we can add a configurable delimiter in the future?) into the original behaviour.
Preflight checklist
Put an x letter in each brackets when you're done this item:
-
Code changes complete. -
Code documentation complete. (Not sure what to document, quite straightforward) -
Documentation for users complete (Will add if people are happy with behaviour). -
Manual testing done. -
Unit-tests implemented. (What's the process for this?) -
Ready for merge.