Skip to main content

max / pter

388 B · 18 lines History Blame Raw
1 //! pter — Plain Text Email Renderer
2 //!
3 //! Converts HTML email bodies into readable markdown.
4 //!
5 //! # Design
6 //!
7 //! The conversion pipeline and module responsibilities are in
8 //! `docs/architecture.md` and, for the ecosystem view, the maintainer wiki.
9 //! <!-- wiki: pter-overview -->
10
11 mod convert;
12 mod elements;
13 mod replies;
14 mod tables;
15 mod whitespace;
16
17 pub use convert::convert;
18