This lib parses Microdata Item
s and their Property
s from source Document
s.
itemref
lookups are not yet supported- Only supports HTML parsing, ie no JSON or RDFa support
If you need any of the above, contribs adding this support are most welcome!
Microdata parses HTML with Meeseeks, which depends on html5ever via meeseeks_html5ever.
Because html5ever is a Rust library, you will need to have the Rust compiler installed.
This dependency is necessary because there are no HTML5 spec compliant parsers written in Elixir/Erlang.
If you are using the provided Microdata.parse(url: ...)
helper function, your library / application will need to declare a dep on HTTPoison (see below).
- Ensure your build machine has the Rust compiler installed (see above)
- Add
microdata
to yourmix.exs
deps- If you plan to use the
Microdata.parse(url: ...)
helper function, include a line for{:httpoison, "~> 1.0"}
- If you plan to use the
def deps do
[
{:microdata, "~> 0.1.0"},
{:httpoison, "~> 1.0"} # optional
]
end
- Run
mix deps.get
Available on HexDocs. TL;DR:
Microdata.parse(html_text)
, if you've already fetched / read your HTMLMicrodata.parse(file: "path_to_file.html")
, if you're reading from fileMicrodata.parse(url: "https://website.com/path/to/page")
, if you'd like to fetch & parse- Uses
HTTPoison ~> 1.0
under the hood; this is an optional dep so you'll want to add it to yourmix.exs
deps as well (see above)
- Uses
- Community contribs would be appreciated to add
itemref
support, as well as JSON & RDFa parsing :)
Thanks muchly to the team + community behind meeseeks, particularly @mischov, for the support and fixes on esoteric XPath issues.
Next time you're cooking, don't risk getting raw chicken juice or sticky sauces on your fancy cookbooks and expensive electronics! We are working on Connie, a conversational cooking assistant that uses Alexa & Google Home to answer questions like:
What am I supposed to be doing?
What's next for the lasagna?
We wrote this lib to parse imported recipes and wanted to share it back with the community, as there are loads of ways you might use microdata in your own projects. Hope you enjoy!
If you'd like to join our private beta, please send an email to hi [AT] cookformom [DOT] com, letting us know:
- Which voice assistant you use;
- Your favourite meal; and
- What you want to learn to cook next.
Have a nice day :)