reget
A simple library for extracting a recipe from HTML documents using structured data (JSON-LD) embedded within.
With the optional markdown feature, recipes can be converted to a markdown string.
This library assumes the document follows the schema.org recipe specification.
Installation
Usage
use parse_recipe;
Markdown support
The optional markdown feature can be used to convert recipes directly to markdown.
let md = recipe
.to_markdown
.with_url
.convert;
Or try the examples.