Coming to v0.11, our component model is now aligned with HEEx and Surface!
You'll be able to share components between libraries, allowing you to use the builtin LiveView function components or any component libraries in Temple, or build a component lib in Temple!
v0.10 has been released!
This release marks the return of `mix temple.convert`, which converts HTML into Temple! This is useful for things like @tailwindui.
Temple also works with SVG now, which is also useful for things like @tailwindui ๐.
https://t.co/VNRYUKnsBa
this would allow Temple to make `div do: "hello"` emit `<div>hello</div>` and
```elixir
div do
"hello"
end
```
emit
```html
<div>
hello
</div>
```
๐ Temple v0.9.0-rc.0 and Temple.Phoenix v0.1.0-rc.0 are both released!
If you want to use Temple in a Phoenix app, all you need to depend on is `:temple_phoenix` and follow the install instructions there, and then follow the main Temple getting started guide. #MyElixirStatus
I just released v0.9.0-rc.0 of @elixir_temple! #MyElixirStatus
https://t.co/LYWzSyis0j
For use with Phoenix, I still need to publish the `temple_phoenix` package that will contain all the Phoenix related parts. Coming soon!
This weekend a WIP Pull Request was opened that uses the EEx Engine directly https://t.co/BugHrOXb3e.
This allows Temple to easily generate code for non-phoenix, phoenix, and live view apps!
Still working out the kinks in a demo app, but should be ready soon ๐. #MyElixirStatus