Packages
Some view helpers for phoenix html( truncate, time_ago_in_words, number_with_delimiter, url_for, current_page? )
Current section
Files
Jump to
Current section
Files
lib/phoenix_html_simplified_helpers.ex
defmodule Phoenix.HTML.SimplifiedHelpers do
@doc false
defmacro __using__(_options) do
quote do
import Phoenix.HTML.SimplifiedHelpers.Truncate
import Phoenix.HTML.SimplifiedHelpers.TimeAgoInWords
import Phoenix.HTML.SimplifiedHelpers.NumberWithDelimiter
import Phoenix.HTML.SimplifiedHelpers.URL
end
end
end