View Single Post
Old 05-08-2019, 05:52 PM   #2
thiago.eec
Wizard
thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.
 
Posts: 1,242
Karma: 1419583
Join Date: Dec 2016
Location: Goiânia - Brazil
Device: iPad, Kindle Paperwhite, Kindle Oasis
Edit metadata in bulk

@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.

Last edited by thiago.eec; 05-08-2019 at 05:59 PM. Reason: added info about search mode
thiago.eec is offline   Reply With Quote