Quote:
Originally Posted by kovidgoyal
And I tried running your samples and as far as I can see all applicable css from extra css is present in the output.
Namely, paragraphs after heading tags have zero text-indent and parapgrahs inside blockquotes have padding 0.25 em and zero text indent. See attached azw3.
|
So now I get that what ruins it is --remove-paragraph-spacing --remove-paragraph-spacing-indent-size 1.0 in the command line call (which you haven't included because none of the paragraphs look indented to me).
In your azw3 file the first paragraphs after heading tags now indeed have a different class (calibre2 instead of calibre3 for the rest) allowing them to be styled differently. But when I used those two command line options, they were applied at the end of the pipeline, and ruined my up-to-that-point-unindented paragraphs. Now I get it.
So at the end of the day, I should emulate those two paragraph-formatting command line options in my own CSS (defining a custom p with zero margins, 1em indent etc) and it would be fine. Thanks a lot.