# Problem Currently to escape HTML, you have to do something like: ```elixir |> assert_visible(escape("can't be blank")) ``` # Proposed Solution Simplify this using a sigil, e.g. ```elixir |> assert_visible(~e<can't be blank>) ```
Problem
Currently to escape HTML, you have to do something like:
Proposed Solution
Simplify this using a sigil, e.g.