Packages

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

Current section

Files

Jump to
taggart lib taggart html.ex
Raw

lib/taggart/html.ex

defmodule Taggart.HTML do
@moduledoc """
HTML tags.
All elements are generated in this module. To use the macros in your
module:
```
use Taggart.HTML
```
If you want more careful control over imports:
```
import Kernel, except: [div: 2]
import Taggart.HTML
import Taggart
```
"""
use Taggart
end