c2pdf/lib.rs
1#![warn(missing_docs)]
2
3//! # Code To PDF
4//!
5//! This crate provides primitives for generating PDFs containing syntax-highlighted code
6//!
7//! [`code_to_pdf::CodeToPdf`] is the main struct for this so is likely the best place to start
8
9pub mod code_to_pdf;
10pub mod dimensions;
11pub mod font_loader;
12pub mod helpers;
13pub mod text_manipulation;