Packages
kreuzcrawl
0.3.0-rc.85
0.3.0
0.3.0-rc.88
0.3.0-rc.87
0.3.0-rc.86
0.3.0-rc.85
0.3.0-rc.84
0.3.0-rc.83
0.3.0-rc.82
0.3.0-rc.81
0.3.0-rc.80
0.3.0-rc.79
0.3.0-rc.77
0.3.0-rc.72
0.3.0-rc.71
0.3.0-rc.70
0.3.0-rc.55
0.3.0-rc.51
0.3.0-rc.50
0.3.0-rc.49
0.3.0-rc.48
0.3.0-rc.47
0.3.0-rc.46
0.3.0-rc.45
0.3.0-rc.44
0.3.0-rc.43
0.3.0-rc.42
0.3.0-rc.37
0.3.0-rc.19
0.3.0-rc.18
0.3.0-rc.17
0.3.0-rc.15
0.3.0-rc.14
0.3.0-rc.13
0.3.0-rc.12
0.3.0-rc.11
0.3.0-rc.10
0.3.0-rc.9
0.3.0-rc.8
0.3.0-rc.7
0.3.0-rc.3
0.3.0-rc.2
0.2.0
0.1.2
0.1.1
0.1.0-rc.9
0.1.0-rc.8
0.1.0-rc.7
0.1.0-rc.6
0.1.0-rc.5
0.1.0-rc.2
High-performance web crawling engine
Current section
Files
Jump to
Current section
Files
lib/kreuzcrawl/image_source.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:1dae80dec968fb99d1b7b43dfca11bb89983c23bba3fd199d417e01a76145f00
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Kreuzcrawl.ImageSource do
@moduledoc "The source of an image reference."
@typedoc "The source of an image reference."
@type t :: :img | :picture_source | :"og:image" | :"twitter:image"
@img :img
@picture_source :picture_source
@og_image :"og:image"
@twitter_image :"twitter:image"
@doc "An `<img>` tag."
@spec img() :: t()
def img, do: @img
@doc "A `<source>` tag inside `<picture>`."
@spec picture_source() :: t()
def picture_source, do: @picture_source
@doc "An `og:image` meta tag."
@spec og_image() :: t()
def og_image, do: @og_image
@doc "A `twitter:image` meta tag."
@spec twitter_image() :: t()
def twitter_image, do: @twitter_image
end