You need to use \n in your data like:
Some Text\nText on Line 2
Because possible whitespace after `\n` is ignored, you can also format
the text like this:
Some Text\n
Text on Line 2
Escaping and handling whitespace is explained pretty thoroughly in the
User Guide:
http://robotframework.googlecode.com/svn/tags/robotframework-2.1.3/doc/userguide/RobotFrameworkUserGuide.html#escaping
Cheers,
.peke
--
Agile Tester/Developer/Consultant :: http://eliga.fi
Lead Developer of Robot Framework :: http://robotframework.org
Good catch. RF really converts reST files to HTML internally so you
need to escape reST syntax first. Since \ is an escape character
there, you need to have two of them in your reST source files.