Skip to content

Property

The Property object represents data used to turn your web page into graph objects. More information about it, you can find on website The Open Graph protocol.

classDiagram
  direction LR
  class Property{
    string name
    string value
  }

Properties

Attribute name Type Description
name string Property name.
value string Property value.

Examples

name property

{{ property.name }}
og:title

value property

{{ property.value }}
Product name

Usage examples

source
<meta property="{{ property.name }}" content="{{ property.value }}" />
output
<meta property="og:title" content="Product name" />