Current section
14 Versions
Jump to
Current section
14 Versions
Compare versions
3
files changed
+3
additions
-2
deletions
| @@ -26,4 +26,4 @@ | |
| 26 26 | {<<"optional">>,false}, |
| 27 27 | {<<"repository">>,<<"hexpm">>}, |
| 28 28 | {<<"requirement">>,<<"~> 0.17.5">>}]]}. |
| 29 | - {<<"version">>,<<"0.1.2">>}. |
| 29 | + {<<"version">>,<<"0.1.3">>}. |
| @@ -105,6 +105,7 @@ defmodule Svx.Compiler do | |
| 105 105 | {tokens, _} = content |
| 106 106 | |> String.replace("<%", "OPENING_%_EEX") |
| 107 107 | |> String.replace("%>", "CLOSING_%_EEX") |
| 108 | + |> String.replace("%{", "MAP_%_EEX") |
| 108 109 | |> Phoenix.LiveView.HTMLTokenizer.tokenize("", 0, [], [], :text) |
| 109 110 | |
| 110 111 | collect_tokens( |
| @@ -5,7 +5,7 @@ defmodule Svx.MixProject do | |
| 5 5 | [ |
| 6 6 | app: :svx, |
| 7 7 | name: "Svx", |
| 8 | - version: "0.1.2", |
| 8 | + version: "0.1.3", |
| 9 9 | description: "A PoC for single-file components for Phoenix LiveView", |
| 10 10 | elixir: "~> 1.12", |
| 11 11 | start_permanent: Mix.env() == :prod, |