/// A recipe extracted from HTML using [parse_recipe](crate::parse_recipe).
/// A collection of [how-to-steps](HowToStep) with an optional name
/// A single ingredient used in a recipe
pub type Ingredient = String;
/// A single how-to-step of a recipe
pub type HowToStep = String;