如何将一长串争论分成几条短线?

NPS*_*NPS 4 line-breaks robotframework

例:

Log To Console   This is the first argument   This is the second argument   This is the third argument
Run Code Online (Sandbox Code Playgroud)

如何用多个短参数打破一行?

我尝试使用\或只是破坏行(不使用任何特殊字符)但它不起作用.

编辑:澄清 - 我想在多行中提供关键字的参数.我想将一长串源代码分成多行.

Psy*_*tho 7

用户指南:

如果有更多数据而不是容易适合行,则可以使用省略号(...)继续前一行.

    Example test     [Documentation]    Documentation   for this    test case.
                     ...      This can get  quite   long...
                     Do X     one       two     three
                     ...      four      five    six
Run Code Online (Sandbox Code Playgroud)