|
|
#1 |
|
Evangelist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 423
Karma: 100100
Join Date: Nov 2015
Location: Europe EEC
Device: Kindle Fire HD6 & HD8
|
help on python replace function needed
Converting an epub2 to epub3, I found that another thing needing fixing was that the <title> in the <head> contained the book title rather than the Chapter title.
I made a regex Find which selected the first few lines : Code:
(?is)(<title\b[^>]*>).*?(</title>)(.*?<h1\b[^>]*>(?:\s*<[^>]+>\s*)*([^<].+?)\s*</a></h1>) where: \1 = <title> \2 = </title> \3 = everything after </title> up to and including </h1> \4 = the chapter title Code:
def replace(match, number, file_name, metadata, dictionaries, data, functions, *args, **kwargs):
title_open = match[1]
title_close = match[2]
between = match[3]
chapter_title = match[4].strip()
return title_open + chapter_title + title_close + between
The full regex Find/Replace works fine, but I'm sure it would be helpful to understand more about python function replace. I don't find anything in the latest downloadable user guide and what is in the online version doesn't help me, sadly. Where did I go wrong, and any recommendations for a useful, simple and easy text on the subject? |
|
|
|
|
|
#2 |
|
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,029
Karma: 3761621
Join Date: Jan 2017
Location: Poland
Device: Various
|
Try this:
Code:
def replace(match, number, file_name, metadata, data): if match: title_open = match.group(1) title_close = match.group(2) between = match.group(3) chapter_title = match.group(4).strip() return title_open + chapter_title + title_close + between To debug functions, it's a good idea to enable the SIGIL_FUNCTION_REPLACE_LOGFILE environment variable; that way, you'll see the errors in the log file. |
|
|
|
| Advert | |
|
|
![]() |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Trying to use python function replace | jwes | Sigil | 26 | 01-13-2026 10:06 AM |
| Volunteer to write new Chapter on Python Function Replace for Sigil User Guide | KevinH | Sigil | 8 | 06-03-2025 07:11 PM |
| Python function terminated | stmbtbob | Devices | 2 | 05-08-2015 08:21 AM |
| Python Function Error | LoveMissBubbly | Calibre | 5 | 09-21-2011 04:52 PM |
| txt2html function in python | benluo | Calibre | 0 | 11-15-2010 09:27 AM |