I am reworking a HTML Heex template and wanted to temporarily comment out a part, so I used the traditional method of:
<%= ref.type %>
=> <%#= ref.type %>
After saving which triggers a format, that code is gone…
I know now that my incantion is wrong, I at least need to write it as <%= # ref.type %>
, or put the whole line between <%!-- --%>
, but still it is strange.