[#1560] Misc. improvements in ActivityPubController federation state restrictions.
[akkoma] / lib / pleroma / web / rich_media / parsers / ogp.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.RichMedia.Parsers.OGP do
6 def parse(html, data) do
7 Pleroma.Web.RichMedia.Parsers.MetaTagsParser.parse(
8 html,
9 data,
10 "og",
11 "No OGP metadata found",
12 "property"
13 )
14 end
15 end