@agirlnamedfia
Have you tried using
Edit metadata in bulk > Search and replace?
You could use regular expressions* like this:
Code:
Search field: comments
Serch for: <p>(.*?)</p>
Replace with: \1
The one above would remove "lines" created with
p tags. You could use other expressions to remove inline styles too:
Code:
Search for: style="(.*?)"
Replace with: - leave it blank
or
Code:
Search for: <span(.*?)>(.*?)</span>
Replace with: \2
These two would remove all changes in fonts, colors, sizes, etc.
Is this what you are looking for?
*Change the search mode to
regular expressions.