docx-rs 0.4.20

A .docx file writer with Rust/WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::XMLBuilder;
use super::XmlEvent;

use std::io::Write;

impl<W: Write> XMLBuilder<W> {
    open!(open_custom_properties, "Properties", "xmlns", "xmlns:vt");
    open!(open_property, "property", "fmtid", "pid", "name");
    closed_with_child!(lpwstr, "vt:lpwstr");
}