For example:
$textfield = "first" . "\n" . "second" . "\n" . "third";
$data = array( 'textfield' => $textfield);
$docx->modifyInputFields($data);
I want the result to be:
first
second
third
but the result will be:
first second third
How can i fix it? Thanks.