What is the ~E sigil in the Drab tutorial?

Yes, this works:

  defhandler update_chat(socket, sender) do
    nick = get_store(socket, :nickname, "Anonymous")
    message = sender["value"]
    html = ~E"<strong><%= nick %>:</strong> <%= message %><br>" |> safe_to_string()
...