Sorry about your question being hidden. I have no idea why logged out users are even allowed to hide questions.
So one possibility is Extension:Replace Text i guess.
Another way, is direct with an SQL query (This will only work in default configs. If you have enabled revision compression or external storage it won't work)
[Note: MediaWiki before 1.31 requires a different query]
SELECT page_namespace, page_title from page inner join slots on slot_revision_id = page_latest inner join content on slot_content_id = content_id inner join text on substring( content_address, 4 ) = old_id WHERE old_text like '%<br>%';
The last part of the query '%<br>%'
says what to look for in a page. % matches 0 or more letters, _ matches precisely 1 letter. \ is an escape character. Everything else is normal. It is case sensitive.
You can do this from the command line mysql client, or phpmyadmin web interface if you have access to that. If all else fails, you can also do this via the sql.php maintenance script (but the interface isn't as nice)