summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/rich_media/parsers/twitter_card.ex
blob: 0adf841598a95692473353e88c711e6b913d3c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.RichMedia.Parsers.TwitterCard do
  alias Pleroma.Web.RichMedia.Parsers.MetaTagsParser

  @spec parse(list(), map()) :: map()
  def parse(html, data) do
    data
    |> MetaTagsParser.parse(html, "og", "property")
    |> MetaTagsParser.parse(html, "twitter", "name")
    |> MetaTagsParser.parse(html, "twitter", "property")
  end
end