Generate images at build time for embedding in the Rust documentation.
png
→ base64
and saved as HTML
tags. E.g.:rust
generate_image(
my_image_generator_function,
600,
400,
"images/my_image.html",
"the alt-text attribute",
"the title attribute",
"div",
true,
)?;
```rust
```
sh
cargo doc --open
You can refer to the crate documentation for more details. And there's also a full practical example available.