bokuweb / docx-rs

:memo: A .docx file writer with Rust/WebAssembly.
https://bokuweb.github.io/docx-rs/
MIT License
341 stars 59 forks source link

[BUG] `widow_control` XML structure error #628

Closed Griklit closed 1 year ago

Griklit commented 1 year ago

build in word:

<w:style w:type="paragraph" w:customStyle="1" w:styleId="t">
    <w:name w:val="t"/>
    <w:qFormat/>
</w:style>
<w:style w:type="paragraph" w:customStyle="1" w:styleId="f">
    <w:name w:val="f"/>
    <w:qFormat/>
    <w:rsid w:val="009B7F4F"/>
    <w:pPr>
        <w:widowControl w:val="0"/>
    </w:pPr>
</w:style>

build in docx-rs:

<w:style w:type="paragraph" w:styleId="t">
    <w:name w:val="t"/>
    <w:pPr>
        <w:widowControl/>
    </w:pPr>
    <w:qFormat/>
</w:style>
<w:style w:type="paragraph" w:styleId="f">
    <w:name w:val="f"/>
    <w:qFormat/>
</w:style>