Skip to main content

max / pter

194 B · 12 lines History Blame Raw
1 //! pter — Plain Text Email Renderer
2 //!
3 //! Converts HTML email bodies into readable markdown.
4
5 mod convert;
6 mod elements;
7 mod replies;
8 mod tables;
9 mod whitespace;
10
11 pub use convert::convert;
12