Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 03-18-2022, 05:13 PM   #16
hobnail
Running with scissors
hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.
 
Posts: 1,584
Karma: 14328510
Join Date: Nov 2019
Device: none
Quote:
Originally Posted by Doitsu View Post
They're not needed in epub3 books that contain HTML5 files
Ah, thanks. That's what I'm using/making.
hobnail is offline   Reply With Quote
Old 03-18-2022, 05:13 PM   #17
hobnail
Running with scissors
hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.
 
Posts: 1,584
Karma: 14328510
Join Date: Nov 2019
Device: none
Quote:
Originally Posted by jackie_w View Post
@Doitsu is correct - epubcheck v4.2.6 gives an error (actually 2 errors) if a <blockquote> tag in an EPUB2 contains text, but no error, for the same markup, if it's in an EPUB3.

Calibre's Check Book utility doesn't show an error for either EPUB2 or EPUB3. To the best of my knowledge, calibre tries to pay more attention to flagging errors that may cause actual problems in actual ereader apps than whether the (over-fussy???) rules of epubcheck are strictly followed.
Thanks. Yes, I was testing with epub 3.
hobnail is offline   Reply With Quote
Old 03-18-2022, 06:01 PM   #18
phillipgessert
Addict
phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.
 
phillipgessert's Avatar
 
Posts: 312
Karma: 3196258
Join Date: Oct 2015
Location: Madison, WI
Device: Kindle 5th Gen
Quote:
Originally Posted by JSWolf View Post
I cannot stand those fake blockquotes. The following CSS code is what I use for blockquotes.

Code:
blockquote {
  margin-top: 1em;
  margin-right: 1.5em;
  margin-bottom: 1em;
  margin-left: 1.5em;
}
If the blockquote ends at the bottom of the page, I use the following code.

Code:
.blockquote {
  margin-top: 1em;
  margin-right: 1.5em;
  margin-bottom: 1em;
  margin-left: 1.5em;
}
Code:
<blockquote class="blockquote">
<p>"This is at the end of the chapter"</p>
</blockquote>
Can you explain the difference between blockquote and blockquote.blockquote here? I get you're using the latter only occasionally but I'm missing what it's meant to do.
phillipgessert is offline   Reply With Quote
Old 03-18-2022, 07:52 PM   #19
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,575
Karma: 145863177
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by phillipgessert View Post
Can you explain the difference between blockquote and blockquote.blockquote here? I get you're using the latter only occasionally but I'm missing what it's meant to do.
If the blockquote ends at the end of the chapter, then there is some whitespace after the end of the last line. This means that it's possible for there to be a blank screen before the next chapter.

<blockquote class="blockquote"> (using the CSS I posted for .blockquote) has a bottom margin of 0. That means no whitespace after the last line of the blockquote at the end of the chapter.
JSWolf is online now   Reply With Quote
Old 03-18-2022, 08:37 PM   #20
phillipgessert
Addict
phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.
 
phillipgessert's Avatar
 
Posts: 312
Karma: 3196258
Join Date: Oct 2015
Location: Madison, WI
Device: Kindle 5th Gen
Quote:
Originally Posted by JSWolf View Post
If the blockquote ends at the end of the chapter, then there is some whitespace after the end of the last line. This means that it's possible for there to be a blank screen before the next chapter.

<blockquote class="blockquote"> (using the CSS I posted for .blockquote) has a bottom margin of 0. That means no whitespace after the last line of the blockquote at the end of the chapter.
Oh, ok. Interesting, I’d have thought margin at the bottom of an element at the end of a chapter would work like margin at the top of an h1 at the beginning. Good info. But I think you had a typo, your example did include a bottom margin in blockquote.blockquote.

Last edited by phillipgessert; 03-18-2022 at 09:22 PM.
phillipgessert is offline   Reply With Quote
Old 03-18-2022, 10:13 PM   #21
Karellen
Wizard
Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.
 
Karellen's Avatar
 
Posts: 1,611
Karma: 9500498
Join Date: Sep 2021
Location: Australia
Device: Kobo Libra 2
Hi all, and thank you for the responses. I have noted your comments and have been playing with the blockquote and I will be using it in future instead of a "fake" quote.

Quote:
Originally Posted by hobnail View Post
I didn't get an error from epubcheck when I made a block quote with no p tags in it.

Also, this page says they're not always needed; see the bottom paragraph:

https://www.w3.org/TR/2011/WD-html5-...e-element.html
Thanks for that link. I have tried using both the blockquote tag on its own as well as adding the p child tags. I found that when using the p child tags, I get a double margin. Using the Live CSS previewer, I am having difficulty narrowing down where the extra margin is coming from. I guess I'll have to create a class rule for the p tag when used in a blockquote to negate the extra margin. See images


Quote:
Originally Posted by Turtle91 View Post
I've always used blockquote when it is a longer quote...typically two or more paragraphs. I think that is why people are used to using the <p> tags inside of a blockquote. If it was a single paragraph then it's easier to just style the individual paragraph:
Thanks Turtle91, I'll use the blockquote in future. I'll play around with your rules.
Its weird because I have looked back at some other books I have reformatted, and the quotes using the same class rule work in some books, but not in others. I cannot see what is causing it. My stylesheet.css is copied from book to book, with only minor changes (italics for a heading for example)

I don't see a setting for Publisher's styling or similar. Only a setting for Publishers Default for font.


Quote:
Originally Posted by Doitsu View Post
They're not needed in epub3 books that contain HTML5 files
What makes a xhtml file a HTML5 file?


Quote:
Originally Posted by JSWolf View Post
If the blockquote ends at the end of the chapter, then there is some whitespace after the end of the last line. This means that it's possible for there to be a blank screen before the next chapter.

<blockquote class="blockquote"> (using the CSS I posted for .blockquote) has a bottom margin of 0. That means no whitespace after the last line of the blockquote at the end of the chapter.
Thanks for that pointer. I'll be aware of that.
Attached Thumbnails
Click image for larger version

Name:	css1.jpg
Views:	115
Size:	266.0 KB
ID:	192848   Click image for larger version

Name:	css2a.jpg
Views:	102
Size:	103.4 KB
ID:	192849  
Karellen is offline   Reply With Quote
Old 03-18-2022, 11:02 PM   #22
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,339
Karma: 20171571
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 JSWolf View Post
I cannot stand those fake blockquotes. The following CSS code is what I use for blockquotes.

Code:
blockquote {
  margin-top: 1em;
  margin-right: 1.5em;
  margin-bottom: 1em;
  margin-left: 1.5em;
}
If the blockquote ends at the bottom of the page, I use the following code.

Code:
.blockquote {
  margin-top: 1em;
  margin-right: 1.5em;
  margin-bottom: 1em;
  margin-left: 1.5em;
}
Code:
<blockquote class="blockquote">
<p>"This is at the end of the chapter"</p>
</blockquote>
PLEASE tell me you are making a joke....pleeeease


Edit:
OK, I didn't see this second page when I first posted. You explained it was at the bottom of a chapter and not the page...so that makes more sense. And, phillipgessert already mentioned that there was no difference in the css...so at least I'm not going outta my mind. Sometimes I just can't tell if you are saying something to be funny - like I do at home all the time!!

Although if it were me I would give it a more descriptive class name so you can understand what it is: <blockquote class="bottomOfChapter">

Cheers!

Last edited by Turtle91; 03-18-2022 at 11:10 PM.
Turtle91 is offline   Reply With Quote
Old 03-19-2022, 12:35 AM   #23
phillipgessert
Addict
phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.phillipgessert ought to be getting tired of karma fortunes by now.
 
phillipgessert's Avatar
 
Posts: 312
Karma: 3196258
Join Date: Oct 2015
Location: Madison, WI
Device: Kindle 5th Gen
Quote:
Originally Posted by Turtle91 View Post
PLEASE tell me you are making a joke....pleeeease


Edit:
OK, I didn't see this second page when I first posted. You explained it was at the bottom of a chapter and not the page...so that makes more sense. And, phillipgessert already mentioned that there was no difference in the css...so at least I'm not going outta my mind. Sometimes I just can't tell if you are saying something to be funny - like I do at home all the time!!

Although if it were me I would give it a more descriptive class name so you can understand what it is: <blockquote class="bottomOfChapter">

Cheers!
Bet he just forgot to pull that out of a copypaste. But on the naming thing, I’m getting fond of calling all one-offs .exception to preserve my sanity. But I can see naming such things after the element. Sort of a similar philosophy (very easy to remember, very easy to target).

Last edited by phillipgessert; 03-19-2022 at 09:40 AM.
phillipgessert is offline   Reply With Quote
Old 03-20-2022, 10:22 PM   #24
AlanHK
Guru
AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.
 
AlanHK's Avatar
 
Posts: 681
Karma: 929286
Join Date: Apr 2014
Device: PW-3, iPad, Android phone
Quote:
Originally Posted by jackie_w View Post
@Doitsu is correct - epubcheck v4.2.6 gives an error (actually 2 errors) if a <blockquote> tag in an EPUB2 contains text, but no error, for the same markup, if it's in an EPUB3.
If working on a book with lots of blockquotes that just have text, no child tags, and want epubcheck to stop whining about them, you can define.

div.blockquote {margin:1em;}

Then S&R <blockquote> to <div class="blockquote"> and </blockquote> to </div>
Add other formatting (font-size, text-align, text-indent) to the def to taste.
Div will work equally with raw text or child tags.

Often blockquote tags are used not for actual quotes, but as a way to add margins to e.g. a dedication. Bad form generally, but it will work even if CSS is ignored.
AlanHK is offline   Reply With Quote
Old 03-23-2022, 11:12 AM   #25
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,575
Karma: 145863177
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by phillipgessert View Post
Can you explain the difference between blockquote and blockquote.blockquote here? I get you're using the latter only occasionally but I'm missing what it's meant to do.
I didn't take out the bottom margin. My mistake. Here is the corrected style.

Code:
.blockquote {
  margin-top: 1em;
  margin-right: 1.5em;
  margin-bottom: 0;
  margin-left: 1.5em;
}
That means no blank space after the last line of the chapter and no chance of a blank page/screen because of this.
JSWolf is online now   Reply With Quote
Old 03-23-2022, 11:16 AM   #26
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,575
Karma: 145863177
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by AlanHK View Post
If working on a book with lots of blockquotes that just have text, no child tags, and want epubcheck to stop whining about them, you can define.

div.blockquote {margin:1em;}

Then S&R <blockquote> to <div class="blockquote"> and </blockquote> to </div>
Add other formatting (font-size, text-align, text-indent) to the def to taste.
Div will work equally with raw text or child tags.

Often blockquote tags are used not for actual quotes, but as a way to add margins to e.g. a dedication. Bad form generally, but it will work even if CSS is ignored.
A blockquote should not be replaced with a div. It should be left alone. It's much better code. I replace the divs with blockquotes.
JSWolf is online now   Reply With Quote
Old 03-23-2022, 11:36 AM   #27
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,339
Karma: 20171571
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 JSWolf View Post
A blockquote should not be replaced with a div. It should be left alone. It's much better code. I replace the divs with blockquotes.
I agree with the spirit, if not the letter.

Perhaps a better way of stating this would be:

Quote:
A blockquote should not be replaced with a div if it actually IS a blockquote. It should be left alone. It's much better code. It is more syntactically correct coding. I replace the divs with blockquotes when blockquotes are actually being used by the author. If it's not obviously a blockquote, then I defer to the author and leave it as a div.
...because, honestly, it just doesn't matter. With the correct CSS you can make almost any element look like any other element...it's just making the descriptors match the document structure. edit:

[/pedantry]

Last edited by Turtle91; 03-23-2022 at 01:41 PM.
Turtle91 is offline   Reply With Quote
Old 03-23-2022, 01:01 PM   #28
Hitch
Bookmaker & Cat Slave
Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.
 
Hitch's Avatar
 
Posts: 11,503
Karma: 158448243
Join Date: Apr 2010
Location: Phoenix, AZ
Device: K2, iPad, KFire, PPW, Voyage, NookColor. 2 Droid, Oasis, Boox Note2
Quote:
Originally Posted by Turtle91 View Post
I agree with the spirit, if not the letter.

Perhaps a better way of stating this would be:



...because, honestly, it just doesn't matter. With the correct CSS you can make almost any element look like any other element...it's just making the descriptors match the document structure.

[/pedantry]
Not to indulge my inner pedant, but if we don't make clear our intentions, we make it harder for those who get stuck editing our work come after us to work with those ePUBs. I mean, at what point are we just Calibre (p class=25, class=26)?

We can and should do better, if for no other reason than trust me, in one-two years, you won't remember what the hell you thought you were doing with span class X and p class Y. :-) I learnt that lesson long ago, when I got back ePUBs for revision and thought "what the holy hell was I thinking?" Better to use commenting and to clearly name what we're doing. Laziness is all well and good if it won't come back to bite you in the ass, but in my line of work, I can say that ass-biting is all too often a result.

Hitch
Hitch is offline   Reply With Quote
Old 03-23-2022, 01:11 PM   #29
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,575
Karma: 145863177
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Hitch View Post
Not to indulge my inner pedant, but if we don't make clear our intentions, we make it harder for those who get stuck editing our work come after us to work with those ePUBs. I mean, at what point are we just Calibre (p class=25, class=26)?

We can and should do better, if for no other reason than trust me, in one-two years, you won't remember what the hell you thought you were doing with span class X and p class Y. :-) I learnt that lesson long ago, when I got back ePUBs for revision and thought "what the holy hell was I thinking?" Better to use commenting and to clearly name what we're doing. Laziness is all well and good if it won't come back to bite you in the ass, but in my line of work, I can say that ass-biting is all too often a result.

Hitch
Very well said.
JSWolf is online now   Reply With Quote
Old 03-23-2022, 01:40 PM   #30
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,339
Karma: 20171571
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 Hitch View Post
Not to indulge my inner pedant, but if we don't make clear our intentions, we make it harder for those who get stuck editing our work come after us to work with those ePUBs. I mean, at what point are we just Calibre (p class=25, class=26)?

We can and should do better, if for no other reason than trust me, in one-two years, you won't remember what the hell you thought you were doing with span class X and p class Y. :-) I learnt that lesson long ago, when I got back ePUBs for revision and thought "what the holy hell was I thinking?" Better to use commenting and to clearly name what we're doing. Laziness is all well and good if it won't come back to bite you in the ass, but in my line of work, I can say that ass-biting is all too often a result.

Hitch
Lolz!!! Sorry I forgot to put the sarcasm emoji on that last sentence. (fixed now) My intent was to head off the argument against by those who will nay-say my syntactic CDO (OCD in the proper alphabetic order).
Turtle91 is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
change British quotes to American quotes lumpynose Sigil 3 08-28-2019 12:20 PM
Quotes/smart quotes in S&R MerlinMama Editor 7 07-19-2016 11:00 PM
How to convert straight quotes to smart 'curly' typographer's quotes bookman156 ePub 52 06-20-2016 03:09 PM
Change single quotes to double quotes Elfwreck Workshop 16 04-26-2013 10:06 AM
convert straight quotes to curly quotes alansplace Calibre 3 09-25-2010 03:51 PM


All times are GMT -4. The time now is 06:48 AM.


MobileRead.com is a privately owned, operated and funded community.