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