Closed yulipumal closed 2 months ago
@yulipumal Thank you for your question
text in first line\n\ntext in new line
return text in first line\n\ntext in new line
it is expected behavior
please, try to use
tag to add lines break
You misunderstood, as I wanted to know how to have two new lines. More precisely, one empty line in between the text.
<p>text in first line</p>
<p></p>
<p>text in second line</p>
text in first line \n \n text in new line Does not work, see above.
@yulipumal Business Text panel supports markdown, HTML and Handlebars as we explained in the documentation and YouTube tutorials.
\n
annotations are used in preformatted text, which requires additional element <pre></pre>
to use them.
You can use
<p>text in first line</p>
<p></p>
<p>text in second line</p>
or
text in first line
<p></p>
text in second line
Let us know if it's clear.
Dear volkovLabst team, thank you for the business-text plugin. It works great, except of one bug that is very anoying.
When the markdown is:
text in first line\n\ntext in new line
The markdown renderer ignores the two lines and renderes it as one line:The second line (one empty
<p></p>
) is missing.