docx-rs/docx-core/examples/toc_with_hyperlink.rs

38 lines
1.2 KiB
Rust
Raw Normal View History

use docx_rs::*;
pub fn main() -> Result<(), DocxError> {
let path = std::path::Path::new("./output/toc_with_hyperlink.docx");
let file = std::fs::File::create(path).unwrap();
let p1 = Paragraph::new()
.add_run(Run::new().add_text("Hello"))
.style("Heading1")
.page_break_before(true);
let style1 = Style::new("Heading1", StyleType::Paragraph).name("Heading 1");
let p2 = Paragraph::new()
.add_run(Run::new().add_text("World"))
.style("Heading2")
.page_break_before(true);
let style2 = Style::new("Heading2", StyleType::Paragraph).name("Heading 2");
let p4 = Paragraph::new()
.add_run(Run::new().add_text("Foo"))
.style("Heading4")
.page_break_before(true);
let style4 = Style::new("Heading4", StyleType::Paragraph).name("Heading 4");
Docx::new()
.add_style(style1)
.add_style(style2)
.add_style(style4)
.add_table_of_contents(
TableOfContents::new()
.heading_styles_range(1, 3)
.hyperlink()
.alias("table of contents"),
)
.add_paragraph(p1)
.add_paragraph(p2)
.add_paragraph(p4)
.build()
.pack(file)?;
Ok(())
}