UNIT6-open / TemplateEngine.Docx

Smart docx template engine for .NET
Other
408 stars 136 forks source link

fix \r\n #70

Open lukich48 opened 3 years ago

lukich48 commented 3 years ago

Old:

<w:r>
    <w:t>
        <w:t>hello</w:t>
        <w:br />
        <w:t> word!</w:t>
    </w:t>
</w:r>

New:

<w:r>
    <w:t>hello</w:t>
    <w:br />
    <w:t> word!</w:t>
</w:r>

LibreOffice can't read this construction