talmudifier 0.2.0

Convert markdown text into Talmud-like PDFs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::{position::Position, style::Style};

/// A word and its style.
#[derive(Clone)]
pub struct Word {
    /// A single word.
    pub word: String,
    /// The font style.
    pub style: Style,
    /// The position on
    pub position: Position,
}