cdhigh / KindleEar

Aggregates RSS and web content(Calibre recipe), sends to Kindle, and includes an e-ink optimized online reader.
http://cdhigh.github.io/KindleEar/
MIT License
2.71k stars 631 forks source link

List style #694

Closed ahmbyrm closed 3 months ago

ahmbyrm commented 3 months ago

hi,

There is no problem with RSS submission. everything works fine, but I think it would be better if you make a correction like this.

You open the RSS file on Kinle, there is a list of RSS content in the Beginning section, but the lines are mixed. List style can be reorganized. Maybe there can be a point at the beginning of the line. Can you check the image I sent in the attachment?

Screenshot 2024-06-09 at 17 31 55

![Uploading Screenshot 2024-06-09 at 17.31.55.png…]()

cdhigh commented 3 months ago

Screenshot is missing.

cdhigh commented 3 months ago

How about add some padding? increase_padding

ahmbyrm commented 3 months ago

The problem here is not padding. For RSS that comes as a list, there may be a sign at the beginning of the line, there may be a number. in the previous version it looked like this.

Screenshot 2024-06-10 at 19 33 55
cdhigh commented 3 months ago

Calibre removes list symbol in CSS to maximize the valuable space on Kindle's small screen.

ahmbyrm commented 3 months ago

I don't think so. KindleEar @1.26.8 does not cause problems with this version. Here is the RSS image I sent with Kindlear version 1.26.8;

001 002

cdhigh commented 3 months ago

The TOC in KindleEar 1.x is generated by my code (KindleEar). The TOC in KindleEar 3.x is generated by Calibre's code directly.

ahmbyrm commented 3 months ago

got it. the code you wrote is much better :)

cdhigh commented 3 months ago

Haha, Calibre's better~

If you really want the list item symbol to come back, you can add an item in "Advanced" / "Calibre Options":

{
  "extra_css": "li {list-style-type: circle;}"
}

If you find this TOC annoying, you can remove it, and it will be the only TOC for every feed (no summary TOC).

{
  "epub_inline_toc": false
}
ahmbyrm commented 3 months ago

:)

thank you.