Open J-Setzer opened 6 years ago
@J-Setzer Confirmed bug, i will fix this soon.
It fixed? It is possible to put line break into tag content?
Multi line strings could be created from arrays:
$values = array(
"Line1",
"Line2",
"Line3",
"Line 4"
);
In template (on new line) you can use list extension:
[[values:listitem()]]
Sorry, but how can I put br in the table?
My template:
Output:
Thanks
My
docx
-Template contains the placeholder[[brief.anschrift]]
which should be replaced by a multiline string:The array passed to the
$templator->render(...)
function looks like this:As a result, the placeholder
[[brief.anschrift]]
has been replaced by...Line1 Line2 Line 3 Line 4
I have also tried several variations with single quotes
'
, double quotes"
, CRLF within code,\r
and\n
as you can see here:For testing purposes the
docx
-Template contains the following placeholders:And this is the result:
None of them returns the expected result. Am I missing something?
Question: How can I pass a multi-line string containing
CRLF
?