I am trying to change a bunch of unordered lists in HTML in a column to plain lines. I have the following search and replace regex:
Search: <li>(.+?)</li>
Replace: $1\n
However it just puts “\n” instead of creating a new line.
I can’t find any reference in List of Regular Expressions - LibreOffice Help it says that it should put in a new paragraph, (which I wouldn’t want anyway), but it just puts in the actual characters.