mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 00:09:01 +00:00
It is not needed to split the string like this: ``` a="potentially long string on"\ "multiple lines" ``` but it is better rather to put the '\' inside the string: ``` a="potentially long string on\ multiple lines" ```