opengraph_parser

A Elixir wrapper for the Open Graph protocol, which supports all properties from the OpenGraph Protocol Originally based on Andriel Nuernberg's version at https://github.com/andrielfn/open_graph and it's fork by Thomas Citharel at https://framagit.org/tcit/open_graph


Keywords
elixir, opengraph
License
MIT

Documentation

OpenGraph

CircleCI

A Elixir wrapper for the Open Graph protocol. This is a fork of open_graph_extended. The main goal is to have an active maintained version again.

Installation

The package can be installed as:

  1. Add opengraph_parser to your list of dependencies in mix.exs:
def deps do
  [{:opengraph_parser, "~> 0.4.4"}]
end

Usage

iex(2)> OpenGraph.parse("<!DOCTYPE html><html><head><meta property=\"og:title\" content=\"Some title\"></head><body><h1>Some title</h1></body></html>")

%OpenGraph{description: nil, image: nil, site_name: nil, title: "Some title",
 type: nil, url: nil}

License

OpenGraphParser Elixir source code is licensed under the MIT License.