Packages

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

Current section

6 Versions

Jump to

Compare versions

3 files changed
+7 additions
-7 deletions
  @@ -23,7 +23,7 @@ dependencies in `mix.exs`:
23 23 ```elixir
24 24 def deps do
25 25 [
26 - {:taggart, "~> 0.1.3"}
26 + {:taggart, "~> 0.1.4"}
27 27 ]
28 28 end
29 29 ```
  @@ -181,7 +181,7 @@ end
181 181
182 182 ## A Note On Macro Expansion
183 183
184 - THe current design allows for a very flexible call structure. However, do
184 + The current design allows for a very flexible call structure. However, do
185 185 not be tempted to think of these as normal functions. They are currently
186 186 implemented as macros. This allows the `do end` blocks to processed as
187 187 if they were a list:
  @@ -19,10 +19,10 @@
19 19 {<<"name">>,<<"floki">>},
20 20 {<<"optional">>,false},
21 21 {<<"repository">>,<<"hexpm">>},
22 - {<<"requirement">>,<<"~> 0.17.0">>}],
22 + {<<"requirement">>,<<"~> 0.17">>}],
23 23 [{<<"app">>,<<"phoenix_html">>},
24 24 {<<"name">>,<<"phoenix_html">>},
25 25 {<<"optional">>,false},
26 26 {<<"repository">>,<<"hexpm">>},
27 27 {<<"requirement">>,<<"~> 2.10">>}]]}.
28 - {<<"version">>,<<"0.1.3">>}.
28 + {<<"version">>,<<"0.1.4">>}.
  @@ -1,7 +1,7 @@
1 1 defmodule Taggart.Mixfile do
2 2 use Mix.Project
3 3
4 - @version "0.1.3"
4 + @version "0.1.4"
5 5 @source_url "https://github.com/ijcd/taggart"
6 6 @description "Tag-based markup in Elixir. Supports standard HTML tags as well as custom tag definitions."
7 7
  @@ -52,10 +52,10 @@ defmodule Taggart.Mixfile do
52 52 {:earmark, "~> 1.2", only: :dev, runtime: false},
53 53
54 54 # converters
55 - {:floki, "~> 0.17.0"},
55 + {:floki, "~> 0.17"},
56 56
57 57 # dev/test
58 - {:phoenix, "~> 1.3.0", only: [:dev, :test], runtime: false},
58 + {:phoenix, "~> 1.3", only: [:dev, :test], runtime: false},
59 59 {:benchee, "~> 0.9.0", only: [:dev, :test], runtime: false},
60 60 {:exprof, "~> 0.2.1", only: [:dev, :test], runtime: false},
61 61 {:eflame,