Updating to prettier-plugin-sh 0.17.0 in our project results in prettier deleting lines from our README.md file. This can be reproduced by adding a simple README.md like this: ~~~text ```bash curl --location --request PUT 'https://url.com/bla?q=\'hi\'' \ --header 'Content-Type: application/json' ``` ~~~ Executing prettier on this file leads to prettier deleting the first line of the bash-snipped: ~~~text ```bash --header 'Content-Type: application/json' ``` ~~~