1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
pub use euclid;
pub mod dom;
pub mod fonts;
pub mod pdf;
pub mod primitives;
pub mod text;
pub mod text_plain;
#[macro_use]
mod tagged_union_with_jump_tables;
mod geom;
pub mod layout;
mod paint;
pub mod style;
#[macro_use]
extern crate cssparser;
#[macro_use]
extern crate html5ever;
#[macro_use]
extern crate victor_tree_internal_proc_macros;
/*
## Specifications
PDF:
https://www.adobe.com/devnet/pdf/pdf_reference.html
https://www.adobe.com/content/dam/acom/en/devnet/pdf/PDF32000_2008.pdf
TrueType:
https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6.html
OpenType (including TrueType):
https://www.microsoft.com/typography/otspec/
PNG:
https://www.w3.org/TR/2003/REC-PNG-20031110/
JPEG:
https://www.w3.org/Graphics/JPEG/
## Font libraries
https://github.com/devongovett/fontkit
https://github.com/fonttools/fonttools
https://github.com/bodoni/opentype + https://github.com/bodoni/truetype
*/