I have a PHP variable holding plain text that i need to insert into a MS Word Template using OpenTBS.
My Word placeholder is:
[onshow.introduction]
The problem is I use justification formatting, so I need actual "new paragraph" ie "carriage returns" (Enter) in Word. Instead all my newlines are translated into "new line" (shift-Enter), messing up my formatting.
I tried inserting
, \r, \n, \n\r, \r\n, PHP_EOL - all of them just create newline characters instead of new paragraph characters in MS Word.
Is there any way to get "new paragraph" characters in Word from OpenTBS?