Quote:
Originally Posted by nymormon
I've been trying to convert some text files to EPUB, and I am not getting the correct format. I have a doublespace between some paragraphs, yet in the finished product it looks triple spaced. On some lines that should be singlespaced, it is doublespaced. I've looked at the code, and it appears that the culprit is the <p></p>. When I try to remove the first <p>, and replace the </p> with a <br>, it won't let me. I'm not sure what to do to get the formatting that I want.
|
1) you can't break up a Tag pair
2) adjust the paragraph style (might/should be in the stylesheet)
margin-bottom and or margin-top values. there is little need for empty paragraphs as you show (except for scene breaks)
3) <br /> can't be naked. it must be contained inside a tag pair (H or P)