It happens many times when we need to remove a line end and unnecessary space between an HTML element. So this could be proven as a time-saving technique.
\n\s+
in the search field, clear the replace fieldThis will remove all newlines (\n+
) followed by all whitespace (\s+
) in the next line.