christopher-ramirez / secretary

Take the power of Jinja2 templates to OpenOffice and LibreOffice.
Other
190 stars 48 forks source link

Add conversion for line breaks tag br to tag text:line-break #52

Closed j123b567 closed 6 years ago

j123b567 commented 6 years ago

In markdown syntax, sigle line break should not casue line break in output document.

A paragraph
A line break

This should be

<p>A paragraph A line break</p>

and it is common mistake to expect different behavior.

Forcing line break should be done by double space at the end of line in markdown

A paragraph<space><space>
A line break

will convert to

<p>A paragraph <br>
A line break</p>

But secretary did not have conversion from <br> to <text:line-break> so this PR is just about it.