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
//! Shared CSS border geometry and style semantics.
//!
//! Vector PDF output and filter `SourceGraphic` painting deliberately consume
//! these same used shapes. Backends may encode the geometry differently, but
//! they must not independently decide corner radii, side ownership,
//! double-rule widths, or bevel colours.

mod geometry;
mod styles;

pub(crate) use geometry::*;
pub(crate) use styles::*;