View Single Post
Old 04-11-2019, 09:30 PM   #34
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,369
Karma: 20212733
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Quote:
Originally Posted by Kiruhdu View Post
May I ask when you have tried this the last time?

Whenever I get a book with *.rtl, *.doc or *.docx I use AWP to produce an epub and for my understanding the code it produce is easy but fine...
Sometimes it needs a minimal overwork in Sigil; and on my reding-devices it get handled with no problems.
Could you please a bit more specific on 'Atlantis' coding is one of the worst not very good either...'?
Sorry for the confusion, I didn't mean to imply I used Atlantis for word processing. I just clean up ePubs that are created from it - and other automated output software programs.

I'm sure AWP does a fine job creating documents...just like Word or any other software. The issue comes when you save as an ePub. The algorithm used to convert its internal markup into the html/xml and css is very .... robotic??? .... literal .... non-intuitive....

For example:
If the author highlighted most of a word, but missed a letter, then selected a Bold font....then realized they missed a letter, highlighted the missed letter, then selected the same Bold font, you could have code that looked like this:

Code:
<p style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; text-indent:1.7777786in;
margin-top:0em; margin-bottom:0em; margin-left:0em; margin-right:0em; font-family:serif">
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">"</span>
<span style="font-weight:bold; font-style:normal; font-size:1em; line-height:1.5; font-family:sanserif">Hell</span>
<span style="font-weight:bold; font-style:normal; font-size:1em; line-height:1.5; font-family:sanserif">o</span>
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">!"</span></p>

<p style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; text-indent:1.7777786in;
margin-top:0em; margin-bottom:0em; margin-left:0em; margin-right:0em; font-family:serif">
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">"</span>
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">Hi</span>
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">!"</span></p>

<p style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; text-indent:1.7777786in;
margin-top:0em; margin-bottom:0em; margin-left:0em; margin-right:0em; font-family:serif">
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">"</span>
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">How are you</span>
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">?"</span></p>

<p style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; text-indent:1.7777786in;
margin-top:0em; margin-bottom:0em; margin-left:0em; margin-right:0em; font-family:serif">
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">"</span>
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">Good</span>
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">!</span>
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif"> </span>
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">You</span>
<span style="font-weight:normal; font-style:normal; font-size:1em; line-height:1.5; font-family:serif">?"</span></p>
When it should look something like this:
Code:
<p><strong>"Hello!"</strong></p>

<p>"Hi!"</p>

<p>"How are you?"</p>

<p>"Good! You?"</p>


with CSS:
p {font-family:serif}
strong {font-weight:bold; font-family:sanserif}
And I WISH I was exaggerating!!

Of course, as with any software, if you use it properly you can minimize some of this mess, and with the use of plugins or macros, etc. you can fix some of the crud. But that would imply a certain basic understanding of the desired outcome that most people don't want to take the time to learn....sooooo, they just hit the "save-as-epub" button and think they have a good ePub...

Last edited by Turtle91; 04-11-2019 at 09:39 PM.
Turtle91 is offline   Reply With Quote