Typography for arrow-linked list on several lines
I’m working on a text-based UI (no graphics other than text) which lists food items ordered one after the other. These food items are connected one another with an arrow symbol. For example:
“Food A --> Food B --> Food C --> Food D” and so on. The list takes the number of lines necessary to display all the content.
The question is when I reach the end of a line, should I display the arrow leading to the next item in the current line, or on the next line ? Is there is a typographical convention for this ?
I mean, either: “Food A --> Food B --> Food C -->
Food D”
Or: “Food A --> Food B --> Food C
--> Food D”
Thanks !