pleroma/lib/pleroma/web/rich_media/parsers/ogp.ex

15 lines
358 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2020-03-03 23:44:49 +01:00
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2019-01-01 21:26:40 +01:00
defmodule Pleroma.Web.RichMedia.Parsers.OGP do
def parse(html, data) do
2019-01-10 19:09:56 +01:00
Pleroma.Web.RichMedia.Parsers.MetaTagsParser.parse(
data,
2020-06-11 15:57:31 +02:00
html,
2019-01-10 19:09:56 +01:00
"og",
"property"
)
2019-01-01 21:26:40 +01:00
end
end