ironpress 1.4.4

Pure Rust HTML/CSS/Markdown to PDF converter with layout engine, LaTeX math, tables, images, custom fonts, and streaming output. No browser, no system dependencies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod layers;
mod objects;
mod paint;
mod writer;

pub(super) use layers::{
    LayerPaintArea, LayerTilePattern, RepeatModes, gradient_layer_pattern, paint_distributed_tiles,
};
pub(super) use objects::{
    PdfFunctionPattern, PdfPatternEntry, PdfPatternGeometryFormat, PdfShadingPattern,
    PdfTilingPattern, PdfTilingPatternEntry, PdfTilingPatternTarget,
};
pub(super) use paint::{
    paint_css_box_pattern, paint_css_page_pattern, paint_page_tiling_pattern,
    paint_shading_pattern, paint_tiling_pattern,
};