View Single Post
Old 05-04-2024, 11:50 PM   #29
Steven630
Groupie
Steven630 began at the beginning.
 
Posts: 163
Karma: 10
Join Date: May 2012
Device: Kindle Paperwhite2
I ended up adding the text of flytitle to h1:

Code:
        if 'flyTitle' in data and data['flyTitle']:
            title_text = f"{data['flyTitle']}: {data['title']}"
        else:
            title_text = data['title']
        #E(article, 'div', data['flyTitle'] , style='color: red; font-size:small; font-weight:bold;')
        E(article, 'h1', title_text, title=safe_dict(data, "url", "canonical") or '')
Steven630 is offline   Reply With Quote