aziz

aziz

(UndefinedFunctionError) function Phoenix.LiveView.HTMLFormatter.format/2 is undefined

I’m posting this as a reference as I couldn’t find a post related to this error message.

This issue can arise in umbrella projects that have been generated a long time ago where the LiveView HEEx formatter didn’t exist yet and you want to get up-to-date. When you try to define the Phoenix.LiveView.HTMLFormatter as a plugin module (only) in the apps/myapp_web/.formatter.exs file you may get the following error:

** (UndefinedFunctionError) function Phoenix.LiveView.HTMLFormatter.format/2 is undefined (module Phoenix.LiveView.HTMLFormatter is not available)
    Phoenix.LiveView.HTMLFormatter.format("<img src=\"/images/toggle_on.svg\" />\n", [file: "src/myapp/apps/myapp_web/lib/myapp_web/views/admin/helpers.ex", line: 11, sigil: :H, modifiers: [], opening_delimiter: "\"\"\"", import_deps: [:ecto, :ecto_sql, :phoenix, :surface, :assertions], plugins: [Phoenix.LiveView.HTMLFormatter], inputs: ["*.{heex,ex,exs}", "{lib,test}/**/*.{heex,ex,exs}"]])
    (elixir 1.14.2) lib/code/formatter.ex:1348: Code.Formatter.maybe_sigil_to_algebra/4
    (elixir 1.14.2) lib/code/formatter.ex:487: Code.Formatter.quoted_to_algebra/3
    (elixir 1.14.2) lib/code/formatter.ex:576: anonymous fn/3 in Code.Formatter.block_args_to_algebra/4
    (elixir 1.14.2) lib/code/formatter.ex:1960: Code.Formatter.each_quoted_to_algebra_with_comments/6
    (elixir 1.14.2) lib/code/formatter.ex:1938: Code.Formatter.quoted_to_algebra_with_comments/6
    (elixir 1.14.2) lib/code/formatter.ex:581: Code.Formatter.block_args_to_algebra/4
    (elixir 1.14.2) lib/code/formatter.ex:1858: Code.Formatter.clauses_to_algebra/4

I noticed that I sometimes didn’t get this error when I ran mix format the first time, but then every subsequent time.

Marked As Solved

aziz

aziz

Solution

Make sure that the same module (plugins: [Phoenix.LiveView.HTMLFormatter]) is defined in the root .formatter.exs file as well. It’s mentioned in the docs but sometimes you even overlook big info sections like that or misunderstand them.

Also ensure that you have at least {:phoenix_live_view, "~> 0.17.8"} defined. It’s the first version that makes the formatter module available.

Also Liked

acco

acco

FWIW, I had to uninstall and reinstall phoenix_live_view

mix deps.clean phoenix_live_view
mix deps.get

Last Post!

acco

acco

FWIW, I had to uninstall and reinstall phoenix_live_view

mix deps.clean phoenix_live_view
mix deps.get

Where Next?

Popular in Questions Top

electic
Hi, I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
hariharasudhan94
I would like to know what is the best IDE for elixir development?
New
gshaw
What is the idiomatic way of matching for not nil in Elixir? E.g., First way: defp halt_if_not_signed_in(conn, signed_in_account) when...
New
sergio_101
I am VERY much an elixir newbie. I have taken one elixir course and one phoenix course on Udemy. During that course, I saw the instructor...
New
aalberti333
As the title describes, I’m trying to run Enum.map() over a list of key/value pairs, where the value is a map. My data looks like this: ...
New
dblack
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar. I p...
New

Other popular topics Top

New
vonH
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
hariharasudhan94
Lets say I have map like this fetching from my database %{"_id" =&gt; #BSON.ObjectId&lt;58eb1a7a9ad169198c3dXXXX&gt;, "email" =&gt; ...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
albydarned
Hello all! I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New

We're in Beta

About us Mission Statement