0
Under review

Search for “multiple consecutive link breaks”.

Jianfa Tsai 1 month ago in iPad updated by Alexander Blach (Developer) 1 month ago 1

Improve search function of Textastic iPadOS app, where user can search for “multiple consecutive empty link breaks”.

Under review

Hello,

you can use the regex search in Textastic to search for multiple consecutive line breaks.

Enable "Regular Expression" and search for:

^(\s*\n){2,}

This will search for consecutive lines that only contain whitespace.

If you don't want to ignore whitespace, search for:

^\n{2,}