Generate HTML for Open Graph integration.
Basic usage ```rust use open_graph::{OpenGraph, ObjectType};
let card = OpenGraph::builder()
.site("@flickr")
.title("The Rock")
.type(ObjectType::VideoMovie)
.image("http://ia.media-imdb.com/images/rock.jpg")
.build();
html
<--! Output -->
```
sh
$ cargo add open-graph
This crate uses #![deny(unsafe_code)]
to ensure everything is implemented in
100% Safe Rust.
Want to join us? Check out our "Contributing" guide and take a look at some of these issues:
MIT OR Apache-2.0