A library for parsing recipes written in markdown that follows the RecipeMD specification.
This implementation tries to be as close as possible to the specification. This results in some differences to the reference implementation written in Python. See the related issue for details.
```rust const MARKDOWN: &str = r#"# Water
A refreshing drink that should be consumed several times a day.
drink, non-alcoholic, H2O
1 glass
Turn on the faucet and fill the glass. "#;
let recipe = Recipe::parse(MARKDOWN)?;
println!("{recipe:#?}");
```
Result of the above program
rust
(If it doesn't show up, visit the docs instead)
This project is licensed under the GNU Lesser General Public License version 3 or (at your option) any later version (LGPL-3.0-or-later).