Name placeholders like `WHERE name = :name` are broken and do not replace at all. Example: ```sql SELECT supplier_name, city FROM suppliers WHERE supplier_id = :name ``` this formats as: ```sql SELECT supplier_name, city FROM suppliers WHERE supplier_id =: name ``` Notice the `=:` and the space between the `:` and `name` - `=: name` You can see this right on the demo page: https://www.vertical-blank.com/sql-formatter/