1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! # Poetry book
//!
//! `poetry-book` allows you to create a poetry book in latex, starting from plain text.

#![forbid(unsafe_code)]

mod core;
mod lang;

pub use crate::core::{
    book::{builder::BookBuilder, Book},
    book_attributes::{builder::BookAttributesBuilder, BookAttributes},
    poem::Poem,
    poem_formatting::CenteredVerse,
    poem_formatting::PoemFormatting,
    preface::Preface,
};

pub use crate::lang::latex::latex_output::Latex;