Line break in SIL

Błażej O_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 25, 2016

It may sound trivial, but what is a proper way to put a line break inside a string in SIL script?

 

I'm trying to add a multiline description to issue, but I don't want to use "\\" sign. I want a proper line break, so that when user will edit the comment he will see:

this is line one
this is line two

but not:

this is line one \\ this is line two

5 answers

1 accepted

7 votes
Answer accepted
Michael Partyka
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 25, 2016

Hi Blazej,

Try this one:

"string" + "\n" + "string"
Błażej O_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 29, 2016

Thanks, that's exactly what I've been looking for smile

0 votes
Konstantin Iakovlev February 23, 2019

"\t\n"

0 votes
Daniel Seegräber November 23, 2017

Hi,

does anyone have a solution for making two line breaks in a row? Like this:


Unfortunately /n/n/n does not work :(.

thanks
daniel

Florin Haszler _Alten Kepler_ November 23, 2017

"This is line one\n\n\nthis is line four" should work

Daniel Seegräber November 23, 2017

Unfortunately not :(

 

2017-11-23 11_28_25-[TEC-4] Test JIRA - JIRA.png

0 votes
Jari Pajunen November 4, 2016

If this used to work, I can't get it to work currently with JIra Description field sad

\n or \\ doesn't work for that.

 

Błażej O_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 6, 2016

Hi Jari,

Does it work when you try to put it into other text fields?

Paste your code here - maybe there is some error in the code itself, and we might find it together smile

 

0 votes
Alexandra Topoloaga
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 29, 2016

Hi Blazej,

My answer comes a little late, but you can also  escape the slashes (like below):

"string\\\\string"

 

Best Regards,
Alexandra 

Błażej O_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 29, 2016

Well, that's what I've tried, but when user edits such comment he sees:

string\\string

And I want him to see:

string
string

 

What is more annoying, double slash doesn't play well with other special markups. Fo example if I want to put a line between two lines I would define a script like this:

string my_comment = "String \\\\ ---- \\\\ String";

Yet, what I achieve is:

comment.PNG

 

The same thing done by the following code:

string my_comment = "String\n----\nString";

works properly:

comment2.PNG

 

So I guess "\n" > "\\\\" smile

Alexandra Topoloaga
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 29, 2016

Ok, I got your point. smile

Suggest an answer

Log in or Sign up to answer