reget 0.2.2

A simple recipe parser for html and json-ld with optional markdown support
Documentation
<!DOCTYPE html>
<html>

<head>
    <script type="application/ld+json">
        {
            "@context": "https://schema.org",
            "@type": "Recipe",
            "name": "Pasta",
            "author": [
                "Alice",
                "Bob"
            ],
            "description": "A recipe for delicious home-made pasta.",
            "recipeIngredient": [
                "250 g flour",
                "100 g semola",
                "5 g salt",
                "25 g olive oil",
                "3 eggs",
                "4 egg yolks"
            ],
            "recipeInstructions": [
                {
                    "@type": "HowToSection",
                    "name": "Make the dough",
                    "itemListElement": [
                        "Pile flour on the work surface, make a well, add semolina, salt, oil, eggs, and egg yolk.",
                        "Mix slowly with a fork, then by hand when it gets thick.",
                        "Knead until smooth but not sticky. Wrap in plastic and chill for 1 hour."
                    ]
                },
                {
                    "@type": "HowToSection",
                    "name": "Cook the pasta",
                    "itemListElement": [
                        "Dust surface with semolina. Quarter dough and roll out to about coin thickness.",
                        "Fold dough twice, slice into 1 cm strips.",
                        "Separate strips. Cook in salted water for 3–4 minutes until al dente."
                    ]
                }
            ]
        }
    </script>
</head>

<body>
    Lorem ipsum dolor sit amet!
</body>

</html>