reget 0.2.3

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

<head>
    <script type="application/ld+json">
        {
            "@context": "http://schema.org",
            "@type": "Recipe",
            "name": "recipe_name",
            "recipeIngredient": [
                "ingredient_1",
                "ingredient_2"
            ],
            "description": "description",
            "recipeInstructions": [ "instruction_1", "instruction_2" ],
            "author": {
                "@type": "Person",
                "name": "author_name"
            }
        }
    </script>
</head>

</html>