Packages
LinkPreviewGenerator is a package that tries to receive meta information from given http(s) address
Retired package: Renamed - link_preview
Current section
Files
Jump to
Current section
Files
lib/link_preview_generator.ex
defmodule LinkPreviewGenerator do
@moduledoc """
Simple package for link previews.
"""
@type success :: {:ok, LinkPreviewGenerator.Page.t}
@type failure :: {:error, atom}
defdelegate parse(url), to: LinkPreviewGenerator.Processor, as: :call
end