Packages

Tag-based markup in Elixir. Supports standard HTML tags as well as custom tag definitions.

Current section

Files

Jump to
taggart lib taggart utils.ex
Raw

lib/taggart/utils.ex

defmodule Taggart.Utils do
@moduledoc false
def minspect(ast, label \\ "") do
str = Macro.to_string(ast)
#IO.puts("#{label} (ast): #{inspect ast}")
IO.puts("#{label} (str): #{str}")
ast
end
end