OEmbedProviders.list_providers

You're seeing just the function list_providers, go back to OEmbedProviders module for more information.

Specs

list_providers() :: [OEmbedProviders.Provider.t()]

Get a list of available providers.

iex(1)> OEmbedProviders.list_providers()
[
  %OEmbedProviders.Provider{
    endpoints: [
      %OEmbedProviders.Provider.Endpoint{
        discovery: nil,
        formats: [],
        schemes: ["http://www.23hq.com/*/photo/*"],
        url: "http://www.23hq.com/23/oembed"
      }
    ],
    provider_name: "23HQ",
    provider_url: "http://www.23hq.com"
  },
  %OEmbedProviders.Provider{...},
  %OEmbedProviders.Provider{...},
  %OEmbedProviders.Provider{...},
  ...
]