ox_content_og_image 2.4.0

OG image generation for Ox Content
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! OG image generation for Ox Content.
//!
//! This crate provides automatic OG (Open Graph) image generation
//! for documentation pages, creating social media preview images.

mod config;
mod generator;
mod template;

pub use config::{ImageFormat, OgImageConfig};
pub use generator::{OgImageError, OgImageGenerator, OgImageResult};
pub use template::{OgImageData, OgImageTemplate, TemplateLayout};