Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Closed Thread
 
Thread Tools Search this Thread
Old 08-18-2021, 04:29 AM   #16
MicroDrie
Connoisseur
MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.
 
Posts: 58
Karma: 438844
Join Date: Aug 2019
Device: PC, Linux Mint, Tablet, and Telephone
From the previous post it can be concluded that everyone defines their own goal slightly differently and based on that also makes a slightly different choice of the available specific resources <i> or <em>. There are also others that say if we can use <em> for Italics, then we can use <i> Tag to display an icon of, say, the font Awesome version 4.7 in an EPUB.
MicroDrie is offline  
Old 08-18-2021, 01:00 PM   #17
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: 316
Karma: 3200000
Join Date: Oct 2015
Location: Madison, WI
Device: Kindle 5th Gen
Quote:
Originally Posted by MicroDrie View Post
From the previous post it can be concluded that everyone defines their own goal slightly differently and based on that also makes a slightly different choice of the available specific resources <i> or <em>. There are also others that say if we can use <em> for Italics, then we can use <i> Tag to display an icon of, say, the font Awesome version 4.7 in an EPUB.
I think in that scenario, it might make some sense to instead use a span for an icon like that. While <i> "only" means italics, it also does specifically mean that. Whereas <span> means basically nothing in particular, so no strong argument against using it for an icon that I can think of.
phillipgessert is offline  
Old 08-18-2021, 01:32 PM   #18
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 phillipgessert View Post
I think in that scenario, it might make some sense to instead use a span for an icon like that. While <i> "only" means italics, it also does specifically mean that. Whereas <span> means basically nothing in particular, so no strong argument against using it for an icon that I can think of.
FWIW, vis: everybody "does their own thing," we had a book that passed 3 different international standard accessibility checks, right?

But did it pass this one college's? Noooooooooooooooooooo, it didn't. I forget now what it was, that they were all up in the high hairy eyeball about,but we had to add something that made NO sense, to pass their internal "accessibility check." It took myriad passes with this custom-designed, in-house tool.

You cannot assume that using Standard A will mean that everybody and their brother will sign off on those particular sets of standards.

@fdwojo: And as far as "since you make your own eBooks," hey, that's what everybody here is doing. Some of us, for other folks, too.

All we can ALL do is muddle along, doing the best we can with inconsistent standards which are then even more inconsistently applied and adopted.

In my humble opinion, i ≠ em and b ≠ strong. When you're having something read aloud to you, they are different.

Offered FWIW.

Hitch
Hitch is offline  
Old 08-18-2021, 06:03 PM   #19
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by Turtle91 View Post
True - as the thread linked by Tex mentions, there are many reasons why you might want <em> instead of <i>.

[...]

So… if you only need a visual italic (like in a list of references) then <i> works fine. But if it is supposed to mean something then you want the semantically correct <em>.
Yes.

So, <i> and <em> for example:

Code:
<p>In <i>Example Book Title</i>, I stated: “We will <em>never</em> give in to their demands.”</p>
  • <i> = Visually italics.
    • Like a book title or name of a newspaper.
  • <em> = Words that are actually emphasis.
    • You're speaking the word "never" differently.

Then take <b> for example. I was just working on a book with an interview:

Code:
<p><b>Person A:</b> This is a question?</p>

<p><b>Person B:</b> This is an answer.</p>

<p><b>A:</b> Next question?</p>
  • <b> = Visually bold.

The "person speaking" is definitely not <strong>, because it's not super important (or emphasized) or anything... it's just a visual decision.

So some books might even use <i> there instead:

Code:
<p><i>Person A:</i> This is a question?</p>
Anyway, you can read through the 2 big threads for a ton more details and examples.

Complete Side Note: On more easily marking up <i> vs. <em>... there's still the "Italics Lists" idea (which I wrote about a few months ago in "What Features or Tools does Sigil Still Need Yet?" (Post #163)).

If you had a nice, searchable/sortable list of all italics in the book, then you could easily mark which ones should go from <i> -> <em> or <em> -> <i>.

It would be the perfect mashup of Spellcheck Lists + Diap's Toolbag.

Quote:
Originally Posted by Turtle91 View Post
Sorry, I thought I had linked to the Accessibility Publishing Database website in my previous post. Here it is for anyone who cares.

They have a nice explanation on what the differences are between i/b/em/strong and when each should be used...they also talk about the html5 specs briefly.
Thanks for the link.

Quote:
Originally Posted by phillipgessert View Post
I think in that scenario, it might make some sense to instead use a span for an icon like that. While <i> "only" means italics, it also does specifically mean that. Whereas <span> means basically nothing in particular, so no strong argument against using it for an icon that I can think of.
Exactly.

Quote:
Originally Posted by Hitch View Post
FWIW, vis: everybody "does their own thing," we had a book that passed 3 different international standard accessibility checks, right?

But did it pass this one college's? Noooooooooooooooooooo, it didn't. I forget now what it was, that they were all up in the high hairy eyeball about,but we had to add something that made NO sense, to pass their internal "accessibility check." It took myriad passes with this custom-designed, in-house tool.

You cannot assume that using Standard A will mean that everybody and their brother will sign off on those particular sets of standards.
I'd like to hear more details on this no-sense nonsense!
Tex2002ans is offline  
Old 08-23-2021, 02:30 AM   #20
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 Hitch View Post
In my humble opinion, i ≠ em and b ≠ strong. When you're having something read aloud to you, they are different.
OK. So e.g. I italicise New York Times but don't emphasise it vocally.

However, I've never seen a commercial book that made that distinction.
Either they use i throughout, or em throughout, for everything: emphasis, book titles, headings, foreign words, etc.
Most of the big corporate ones used em, but if so never used i.

And none of my clients has ever mentioned this distinction to me. Certainly none of the authors have.

And if I was making a text-to-speech app, it would be foolish to expect the text to be coded according to this rule, because hardly any is. It would have to either emphasise all italics, or have an exception list of commonly italicised words.

Anyway, I make books to read and look good on paper or screen.
if someone wants to run it through a TTS engine, good luck to them. They can pay me if they want me to prep the text for that.

Last edited by AlanHK; 08-23-2021 at 02:37 AM.
AlanHK is offline  
Old 08-23-2021, 03:52 AM   #21
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by AlanHK View Post
OK. So e.g. I italicise New York Times but don't emphasise it vocally.

However, I've never seen a commercial book that made that distinction.
This was partially discussed in those 2 previous large threads on the topic.

Yes, most people just go for the easy/quick: all <i> or all <em>... (or you have no-good tools/workflows which force markup fully one way or the other.)

Although much rarer, there are programs/tools/people that generate more semantically correct HTML.

Like Citation Management Systems (Zotero, Mendeley) generate proper <i> + <em> + <b>.

There's also lots of other alternate workflows, like: DOCBook->HTML, LaTeX->HTML, or JATS (an XML format used in journal articles).

Publishers/authors will mark italics/emphasis/bold in their books properly, so they could more easily swap citation styles, mathematical styles, etc.:
  • A journal article in a journal may follow a different citation style than republishing it as a chapter in a book.
    • Some citation styles use "Vol. 1, No. 2", others may use "<b>1</b>(2)".
  • In physics, a vector may be written as a <b>i</b> letter. Other styles may use a "hat" (î).

Quote:
Originally Posted by AlanHK View Post
And none of my clients has ever mentioned this distinction to me. Certainly none of the authors have.
Doubt they have a clue. But you, as the ebook creator, should be the knowledgable one.

They probably won't know one thing about <blockquote>, <h1>, <table> + <thead>, alt tags, or EPUB3 footnote markup either... but you'd want to mark all this stuff to the best of your ability (and teach them about it) to help future readers/conversions/tools.

* * *

Properly marked headings for example.

I've discussed how HTML from my ebooks gets converted/reposted as articles on a website.

After publishing ~100 ebooks, the web admin decided to add a Javascript TOC. Now, because I had all my headings marked properly, poof, a reader on the site can jump through the web-version similar to an EPUB's TOC + the Javascript TOC highlights where you're located in the book.

(Blind/visually-impaired readers using JAWS/NVDA would've already been able to navigate using headings! And now sighted readers can now too! )

Because I followed standards + laid the groundwork... the tools/enhancements will come.

Quote:
Originally Posted by AlanHK View Post
Anyway, I make books to read and look good on paper or screen.

if someone wants to run it through a TTS engine, good luck to them. They can pay me if they want me to prep the text for that.
If you mark the:
  • Headings
    • using <h1>-><h6>, NOT <p class="heading">.
  • Paragraphs
    • using <p>, NOT <div class="p">.
  • Italics
    • using <i> or <em>, NOT <span class="italics">.
  • Tables
    • using <table>, NOT <img>.
  • Proper lang + xml:lang

then you'll be most of the way there.

Last edited by Tex2002ans; 08-23-2021 at 04:38 AM.
Tex2002ans is offline  
Old 08-23-2021, 06:11 AM   #22
Sarmat89
Fanatic
Sarmat89 ought to be getting tired of karma fortunes by now.Sarmat89 ought to be getting tired of karma fortunes by now.Sarmat89 ought to be getting tired of karma fortunes by now.Sarmat89 ought to be getting tired of karma fortunes by now.Sarmat89 ought to be getting tired of karma fortunes by now.Sarmat89 ought to be getting tired of karma fortunes by now.Sarmat89 ought to be getting tired of karma fortunes by now.Sarmat89 ought to be getting tired of karma fortunes by now.Sarmat89 ought to be getting tired of karma fortunes by now.Sarmat89 ought to be getting tired of karma fortunes by now.Sarmat89 ought to be getting tired of karma fortunes by now.
 
Posts: 518
Karma: 2268308
Join Date: Nov 2015
Device: none
Quote:
Originally Posted by Tex2002ans View Post
Headings using <h1>-><h6>, NOT <p class="heading">
H tags are useless for headings: they were designed for technical documentation "2.1.1 Blah blah" and not for books.
Sarmat89 is offline  
Old 08-23-2021, 07:38 AM   #23
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 Tex2002ans View Post
A journal article in a journal may follow a different citation style than republishing it as a chapter in a book.
If you're doing scientific articles in epub, all respect to you, but that's a pretty esoteric market.


Quote:
Originally Posted by Tex2002ans View Post
Doubt they have a clue. But you, as the ebook creator, should be the knowledgable one.
I meant, they have never discussed repurposing the text (except from print to ebook, or for webpages, which is trivial) or converting to audio automatically -- for audiobooks, they use a human reader, which is by far the best result.

Quote:
Originally Posted by Tex2002ans View Post
They probably won't know one thing about <blockquote>, <h1>, <table> + <thead>, alt tags, or EPUB3 footnote markup either... but you'd want to mark all this stuff to the best of your ability (and teach them about it) to help future readers/conversions/tools.
They just care what it looks like. And I have never, in 30 years, had an author who was able to use Word styles usefully. Trying to educate them about XML is just unthinkable.



Quote:
Originally Posted by Tex2002ans View Post
If you mark the:
  • Headings
    • using <h1>-><h6>, NOT <p class="heading">.
  • Paragraphs
    • using <p>, NOT <div class="p">.
  • Italics
    • using <i> or <em>, NOT <span class="italics">.
  • Tables
    • using <table>, NOT <img>.

then you'll be most of the way there.
Yes, of course.
I learnt HTML back in the 90s, did it for years before I learned any CSS, so I use all those as appropriate. And I much prefer e.g. just <h2> for chapter heads than a p or div class; not least because it more or less works with no CSS and lets me generate a TOC in Sigil.
AlanHK is offline  
Old 08-23-2021, 07:42 AM   #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 Sarmat89 View Post
H tags are useless for headings: they were designed for technical documentation "2.1.1 Blah blah" and not for books.
So, you don't use Sigil's "Generate Table of contents"?

Anyway, chapters I use h2. Parts, h1. Subheads h3.
Works for fiction as well as anything else.
Then click and in 30 seconds I have a presentable TOC.
AlanHK is offline  
Old 08-23-2021, 07:59 AM   #25
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 28,574
Karma: 204127028
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by Sarmat89 View Post
H tags are useless for headings: they were designed for technical documentation "2.1.1 Blah blah" and not for books.
Hogwash.
DiapDealer is online now  
Old 08-23-2021, 08:12 AM   #26
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,727
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by DiapDealer View Post
Quote:
Originally Posted by Sarmat89 View Post
H tags are useless for headings: they were designed for technical documentation "2.1.1 Blah blah" and not for books.
Hogwash.
Hogwash indeed.

Doitsu is offline  
Old 08-23-2021, 09:21 AM   #27
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 DiapDealer View Post
Hogwash.
Quote:
Originally Posted by Doitsu View Post
Hogwash indeed.
And may I add in my HOGWASH, too? What utter nonsense! "H tags are useless for headings." Sheesh.


Hitch
Hitch is offline  
Old 08-23-2021, 10:49 AM   #28
Notjohn
mostly an observer
Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.
 
Posts: 1,519
Karma: 987654
Join Date: Dec 2012
Device: Kindle
To me,it's a distinction without a difference. I prefer i and b because they do what they say, while em and strong are ambiguous. Most writers emphasize with italics, and reserve bold for the most minor sort of breakhead.

Lots of html is nutty. For example, the claimed distinction between an apostrophe and a single close-quote. One shrugs one's shoulders and gets on with it.
Notjohn is offline  
Old 08-23-2021, 03:54 PM   #29
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,355
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 Notjohn View Post
To me,it's a distinction without a difference. I prefer i and b because they do what they say, while em and strong are ambiguous. Most writers emphasize with italics, and reserve bold for the most minor sort of breakhead.

Lots of html is nutty. For example, the claimed distinction between an apostrophe and a single close-quote. One shrugs one's shoulders and gets on with it.
I would suggest that shows a complete lack of awareness about people with accessibility issues. I was there not too long ago, then I was forced to become aware… and now I care. Don’t feel lonely though - there are a lot of people that are unaware and don’t care.

The distinction is that the reading devices/apps can, and do, treat them (b/i, em/strong) differently. So, as a professional, it would be incumbent upon us to do things the right way, rather than not.
Turtle91 is offline  
Old 08-23-2021, 04:34 PM   #30
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 would suggest that shows a complete lack of awareness about people with accessibility issues. I was there not too long ago, then I was forced to become aware… and now I care. Don’t feel lonely though - there are a lot of people that are unaware and don’t care.

The distinction is that the reading devices/apps can, and do, treat them (b/i, em/strong) differently. So, as a professional, it would be incumbent upon us to do things the right way, rather than not.
Took the words right out of my mouth. Or, snagged 'em from my fingers, as it were.

H
Hitch is offline  
Closed Thread

Tags
editing, format text


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating e-pub with Sigil, cannot change font in Sony PRS-T2 The_Bookworm Sigil 4 03-24-2020 08:46 PM
Automatic change of coded HTML Entities into special chars in Sigil 0.9.9 upon saving Barto Sigil 20 12-01-2018 05:56 AM
How to change the Sigil Images folder name to images davidspring Sigil 29 02-12-2018 05:00 AM
how to change Sigil's heading Echeban Sigil 4 10-30-2015 02:52 PM
font change sigil to mobi with kindlegen wyatt650 Sigil 4 09-05-2013 10:49 AM


All times are GMT -4. The time now is 12:05 PM.


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