View Single Post
Old 03-24-2023, 04:44 PM   #8245
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,987
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
If you want to take responsibility for adding line break formatting to all entries, you could change titlepage_entry.

From the Custom Output wiki page:
Code:
## ${id}, ${label}, ${value}
titlepage_entry:<b>${label}:</b> ${value}<br />
It might work to change the br to have a class containing the id and then apply a CSS to that class to not have regular line break behavior:

Code:
## ${id}, ${label}, ${value}
titlepage_entry:<b>${label}:</b> ${value}<br class="te_${id}" />

add_to_output_css:
 br.te_seriesHTML { display: none; }
I haven't tested that beyond Calibre Edit book. It may not be that simple.
JimmXinu is offline   Reply With Quote