|
|
#1 | |
|
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 5,763
Karma: 24088559
Join Date: Dec 2010
Device: Kindle PW2
|
Searching within tags
Quote:
This will save you the hassle of coming up with complex regular expressions. For example the following minimal plugin code: Spoiler:
will look for span tags with a Calibre13 class and replace them with <b> tags. (All other <span> tags will be deleted.) Before: Code:
<p>This should be <span class="Calibre6 Calibre13 Calibre2">bolded</span>. <span class="Calibre2">This span is redundant</span> <span>and this span should also be deleted.</span></p> Code:
<p>This should be <b>bolded</b>. This span is redundant and this span should also be deleted.</p>
Last edited by Doitsu; 03-29-2020 at 04:55 AM. |
|
|
|
|
|
|
#2 | |
|
Addict
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 201
Karma: 266070
Join Date: Dec 2010
Location: Spain
Device: Win10,Win11,Ubuntu,PockbookLux44
|
Quote:
Only, I do need a little help with syntax to make this modified code work: Spoiler:
1. how to pass to soup.find_all() a list of tags as argument 2. how to rework Code:
if 'calibre' in tag['class'] 3. Would the code work as well for selecting <meta... /> tag by 'name' and deleting it? How? Maybe it's trivial, but I am green--python 2.+ for Gimp is the fartest I have gone. And couldn't make anything of your link ![]() Thanks! * Sorry for the delay: too many irons... ** Does this get 'out of topic'? (better in plug-ins) |
|
|
|
|
| Advert | |
|
|
|
|
#3 | ||
|
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 5,763
Karma: 24088559
Join Date: Dec 2010
Device: Kindle PW2
|
You can use a list as the search parameter. For example:
Code:
tags = soup.find_all(['i', 'b', 'small', 'br']) Quote:
Quote:
You can delete tags with decompose(). However, since this modifies the "soup," it should be done last. I also think it should be moved to plugins. |
||
|
|
|
![]() |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Searching for entries with no tags | sasilk | Library Management | 3 | 09-02-2017 12:48 PM |
| Searching between tags | mariaclaudia | Calibre | 4 | 05-10-2017 06:38 PM |
| Searching Tags | MzPepper | Library Management | 4 | 03-29-2017 03:36 PM |
| Searching tags to show tags I want even when it has a tag I do not | Jade Aislin | Library Management | 2 | 04-25-2012 02:01 PM |
| Searching for empty tags | iain_benson | Calibre | 2 | 01-27-2009 06:04 PM |