1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#![warn(missing_docs)]

//! This is a GTK app that allows you to quickly preview a markdown file. It's not intended to be
//! used as a library, but the individual components are there, and theoretically usable. Check the
//! `README.md` file for instructions on how to use it as an app.

pub mod assets;
pub mod background;
pub mod input;
pub mod markdown;
pub mod ui;