mhanberg
Expert LSP Core Team
I just released the first version of Temple: an HTML DSL for Elixir and Phoenix!
https://github.com/mhanberg/temple
You can read this blog post or the docs for more information!
Trending in Announcing
WebAuthnLiveComponent WebAuthnComponents
See this post about renaming the package.
Passwordless authentication for Phoenix LiveView app...
New
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
I released Doggo, a collection of unstyled Phoenix components.
https://github.com/woylie/doggo
Features
Unstyled Phoenix components....
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hi everyone,
I’ve been working on this protobuf library for 3 years. We use it in the company I work for, EasyMile, to communicate with ...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
I’ll shortly be launching Text, a nascent text analysis library.
Current functionality
In this early version (not ready for prime time) ...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
I love Elixir. It’s one of 2 programming languages I’ve ever fallen in love with.
But I don’t use it anymore.
Serverless was the promis...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ai
- #ecto-query
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
hauleth
Out of curiosity - what are the advantages over
Phoenix.HTML?mhanberg
This library is not a competitor to Phoenix.HTML, in fact Temple uses Phoenix.HTML as a dependency.
Temple needs to wrap Phoenix.HTML to make the functions work with the macros.
The reasons are related to how the markup is collected at runtime and there is some complexity around the anonymous functions used in the
form_forandinputs_forfunctions from Phoenix.HTML.fuelen
And the same question regarding to GitHub - zambal/eml: Library for writing and manipulating (html) markup in Elixir. · GitHub
mythicalprogrammer
Reminds me of an in between jade and haml.
Looks nice.
lucaong
Looks nice! Well done
About the existence of similar libraries, I think the fact that different authors experiment with different approaches is a positive sign of a good open-source ecosystem.
OvermindDL1
Ah I like code-syntax based DSEL’s like these, it makes it much easier to just use normal coding practices and functions instead of some unique syntax that makes it more difficult.
I’m guessing that it works by having each expression in the body list be placed into the final template, and something like
forthat returns a list just inlines each element of the list as a standalone expression?Why use
defcomponentover just a function call, or is it to work better with phoenix’s liveview stuff so you can inline it all more?In the example, could:
Be instead implemented just as:
And thus be used like
nav_item(item)ornav_item iteminstead?Is there any way to make it fail to compile if children are passed in when they aren’t used, or fail to compile if no children are passed in when they are required?
mhanberg
The macros expand to functions that when called, will emit markup into some state. If they are called inside a loop, they will be called multiple times.
defcomponentis used to create a macro likedivorspan, except it is given the name you pass, and the props you pass it are replaced in it’s body.If you create a function that calls the
templemacro, it will return{:safe, "your markup"}, but it will not be emitted into the end result unless you call it with thepartialmacro.will emit
It doesn’t do that right now, but I’m sure it’s possible!
darkmarmot
Just wanted to say that Temple looks awesome! I am pining for it to get LiveView integration
mhanberg
Just released v0.1.1!
Single arity tags will now escape content passed to them, functioning the same as calling the
textmacro.CHANGELOG
mhanberg
Just released v0.1.2!
Components now work correctly when
requireing their module (as opposed to callingimport).CHANGELOG