Example: ``` from "alpine" @@ run "ls\n/" ``` results in the incorrect Dockerfile: ``` FROM alpine RUN ls / ``` instead, each `\n` characters should be escaped using `\` as per https://docs.docker.com/engine/reference/builder/#format