Quote:
Originally Posted by larysa
I use ocr software to convert my scan page into text page, after import text into calibre.
But on each paragraph i have to add my p class at the beginning and /p at the end...
For each paragraph!! I want add this with one rule....
|
You don't need to add <p class="someclassname">. For most paragraphs, just use <p> and in css, something like this...
p {
margin-top: 0;
margin-bottom: 0;
text-indent: 1.2em;
}
You just change p as you want and you won't need a class for most p.