poetry_book/
lib.rs

1//! # Poetry book
2//!
3//! `poetry-book` allows you to create a poetry book in latex, starting from plain text.
4
5#![forbid(unsafe_code)]
6
7mod core;
8mod lang;
9
10pub use crate::core::{
11    book::{builder::BookBuilder, Book},
12    book_attributes::{builder::BookAttributesBuilder, BookAttributes},
13    poem::Poem,
14    poem_formatting::CenteredVerse,
15    poem_formatting::PoemFormatting,
16    preface::Preface,
17};
18
19pub use crate::lang::latex::latex_output::Latex;