Code snippet: ``` defmodule Foo do @bar ["cool", "strings"] @spam "this is formatted [#{ @bar |> Enum.map(fn method -> "'#{method}'" end) |> Enum.join(", ") }]" def eggs() do IO.inspect("Doing whatever here") end end ``` Font lock seems to get really confused with `"` in `#{}` Screenshot of highlighting: <img width="465" alt="image" src="https://user-images.githubusercontent.com/31699470/116538732-96c45a00-a8f0-11eb-89a3-3d2d223ebdce.png">