Hello have run into this a couple of times and wondering what the resolve would be.
Part of a business card in indesign that looks like this with supressed trailing spaces on empty content activated.
M +64
21 123 1234T +64
9 123 1234e...@example.co.nzAnd in the plan for both of those is, ( Mobile & Telephone )
if ( @{varMobile} <> "")
{
"M +64 " & @{varMobile}
}
else
{
""
}
When there is no Telephone present it appears to be deleting the line break with it (I'm guessing) so it looks like this
M +64
21 123 1234e...@example.co.nzBut i want
M +64
21 123 1234e...@example.co.nzHow would i go about this? Some way to force a line break? Is there any q-lingo for cold hard linebreak? E.G
if ( @{varTelephone} <> "")
{
"M +64 " & @{varTelephone}
}
else
{
"(LINEBREAK)"
}