2021-12-02 17:56:29 +02:00
|
|
|
use docx_rs::*;
|
|
|
|
|
|
|
|
pub fn main() -> Result<(), DocxError> {
|
|
|
|
let path = std::path::Path::new("./output/sdt.docx");
|
2024-02-09 14:04:42 +02:00
|
|
|
let file = std::fs::File::create(path).unwrap();
|
2021-12-02 17:56:29 +02:00
|
|
|
let p = Paragraph::new().add_run(
|
|
|
|
Run::new()
|
|
|
|
.add_text("Hello")
|
|
|
|
.fonts(RunFonts::new().ascii("Arial")),
|
|
|
|
);
|
|
|
|
Docx::new()
|
|
|
|
.add_structured_data_tag(StructuredDataTag::new().add_paragraph(p))
|
|
|
|
.build()
|
|
|
|
.pack(file)?;
|
|
|
|
Ok(())
|
|
|
|
}
|