Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Formats > Workshop

Notices

Reply
 
Thread Tools Search this Thread
Old 08-02-2020, 11:25 AM   #1
angharad09
Enthusiast
angharad09 began at the beginning.
 
Posts: 30
Karma: 10
Join Date: Aug 2011
Device: none
Question block quotes (in nonfiction)

I'm used to using extra indenting (rather than quote marks) to identify a long quote -- for print and PDF documents. But is indenting reliable across multiple different e-readers, including older ones? If not, is there any other formatting, such as italics, that would be more reliable? How do people usually handle long quotes in nonfiction ebooks?

(I'm asking here because I'd like to know for both epub and Kindle formats, but please let me know if a different forum would be better.)

Thanks!
angharad09 is offline   Reply With Quote
Old 08-02-2020, 11:53 AM   #2
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,101
Karma: 18727053
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
It ultimately comes down to the styling you want to use. There is a specific tag you can use for long block quotes...<blockquote>yadda, yadda, yadda</blockquote>. That tag has been around forever, so it should be supported in just about any reader/app out there.

You can then use your CSS to style it however you wish:

Spoiler:
Code:
CSS:
p                           {text-indent:1.2em}
blockquote.latinyadda       {margin:2em}
blockquote.latinyadda p     {text-indent:0; text-align:justify; font-size:.8em}
blockquote.latinyadda p.sig {text-align:right}


HTML:
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec leo sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam erat volutpat. Etiam volutpat quam nec tristique porta. Nulla facilisi. In pellentesque est et sollicitudin sagittis. Nunc venenatis, nisi ut faucibus posuere, mi odio congue purus, a fringilla urna turpis eget metus. Pellentesque a purus vulputate, dignissim purus a, auctor tellus. Aliquam convallis fermentum maximus. Proin a semper neque. Donec vehicula fermentum posuere. Donec vel risus ut lectus pharetra suscipit eu non magna. Phasellus ac sem mauris. Nam egestas laoreet odio, at convallis ante hendrerit quis. Integer rutrum nulla at magna tincidunt commodo.</p>

  <blockquote class="latinyadda">
    <p>Suspendisse fermentum nec mauris sit amet laoreet. Duis placerat bibendum tellus. Nullam fringilla ipsum a justo volutpat feugiat.</p>

    <p>Phasellus nec lorem dignissim, sodales lorem ac, luctus nulla. Vivamus ante est, vulputate a aliquet et, bibendum sit amet leo. Nunc erat leo, eleifend non rutrum vitae, aliquam et velit. Aliquam volutpat sodales orci, id varius nisl gravida in. Curabitur accumsan pellentesque euismod. In ultricies rutrum varius. </p>

    <p class="sig">–Dionysus, The Great c.2020</p>
  </blockquote>

<p>Sed vehicula massa id vulputate mollis. Proin malesuada lobortis orci, eu mollis elit porttitor in. Morbi posuere sem a metus tempor interdum. Maecenas ac dolor accumsan lacus tristique cursus at vitae orci. Suspendisse potenti. Sed mollis tortor sit amet imperdiet pharetra. Proin placerat efficitur lectus et placerat. Nam ultricies cursus dapibus. Curabitur eu sem justo. Nunc hendrerit sagittis tortor ut sollicitudin. Maecenas nec tempus augue, non consequat nulla. Proin ac nisi eu orci porttitor vulputate quis et risus. Proin tristique commodo arcu sit amet euismod.</p>
Attached Thumbnails
Click image for larger version

Name:	capture.png
Views:	261
Size:	240.1 KB
ID:	181079  

Last edited by Turtle91; 08-02-2020 at 11:58 AM.
Turtle91 is offline   Reply With Quote
Advert
Old 08-02-2020, 01:32 PM   #3
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,552
Karma: 14325282
Join Date: Nov 2019
Device: none
I don't know if this is the best way to do it but I use width with margin-left and margin-right set to auto and haven't noticed any problems yet.
Code:
blockquote, div.block {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    width: 85%;
}
The 1em space below it is in the p tag:
Code:
blockquote + p, div.block + p {
    margin-top: 1em;
}
I heard it was better to prefer margin-top over margin-bottom.

Last edited by hobnail; 08-02-2020 at 01:35 PM.
hobnail is offline   Reply With Quote
Old 08-03-2020, 03:22 AM   #4
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,516
Karma: 18512745
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
To better accommodate narrow screens / large fonts, it may be better to use only margin-left (say 2em, or 5%) and no margin-right.
Jellby is offline   Reply With Quote
Old 08-04-2020, 02:16 PM   #5
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,552
Karma: 14325282
Join Date: Nov 2019
Device: none
Quote:
Originally Posted by Jellby View Post
To better accommodate narrow screens / large fonts, it may be better to use only margin-left (say 2em, or 5%) and no margin-right.
So far it has always worked; lines that are long are nicely wrapped.

What sorts of ugliness are you thinking does or could happen?
hobnail is offline   Reply With Quote
Advert
Old 08-04-2020, 03:31 PM   #6
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: 311
Karma: 3196258
Join Date: Oct 2015
Location: Madison, WI
Device: Kindle 5th Gen
Quote:
Originally Posted by hobnail View Post
So far it has always worked; lines that are long are nicely wrapped.

What sorts of ugliness are you thinking does or could happen?
I usually do something similar to your approach but I think I'm going to switch to Jellby's as it (I assume) is meant to prevent lines that are so short they are unpleasant to read on e.g. a smartphone.
phillipgessert is offline   Reply With Quote
Old 08-05-2020, 03:19 AM   #7
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,516
Karma: 18512745
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
Quote:
Originally Posted by hobnail View Post
What sorts of ugliness are you thinking does or could happen?
Just that, if you already have a narrow screen with short lines, and add both left and right margin, you may be left with ultra-short lines in the blockquote. Reasonable top, left and bottom margin should be enough to set the blockquote apart from the surrounding text. As an aside, don't force justification if you're not doing it for the main text (and you shouldn't). Another "trick" I sometimes use is replacing text-indent inside the blockquote with some vertical spacing between paragraphs (not a full line, something like 0.5em).
Jellby is offline   Reply With Quote
Old 08-05-2020, 12:04 PM   #8
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,552
Karma: 14325282
Join Date: Nov 2019
Device: none
Quote:
Originally Posted by Jellby View Post
Just that, if you already have a narrow screen with short lines, and add both left and right margin, you may be left with ultra-short lines in the blockquote. Reasonable top, left and bottom margin should be enough to set the blockquote apart from the surrounding text. As an aside, don't force justification if you're not doing it for the main text (and you shouldn't). Another "trick" I sometimes use is replacing text-indent inside the blockquote with some vertical spacing between paragraphs (not a full line, something like 0.5em).
Ok, thanks. I'll give that a try. My div.block is the generic/common stuff, then I have add-ons, e.g., class="block letter". Since I'm mostly redoing PG books for my own use those are typically handwritten letters so I use italics as a sort faux handwriting and use a bit of vertical space between paragraphs and no indent.
hobnail is offline   Reply With Quote
Old 08-07-2020, 09:59 PM   #9
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,297
Karma: 12126329
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by angharad09 View Post
I'm used to using extra indenting (rather than quote marks) to identify a long quote -- for print and PDF documents.
That's called a blockquote. (Or officially called a "block quotation".)

Like Turtle91 said, in HTML that can be created using <blockquote>:

Code:
<p>As Einstein wrote in <i>Article Title</i>:</p>

<blockquote>
<p>This is a long quote.</p>
<p>And this is some more of a really long quote.</p>
<p>And this is the end.</p>
</blockquote>
Quote:
Originally Posted by angharad09 View Post
But is indenting reliable across multiple different e-readers, including older ones?
Yes, <blockquote> works in everything since the dawn of time.

Quote:
Originally Posted by hobnail View Post
My div.block is the generic/common stuff, then I have add-ons, e.g., class="block letter". [...]
Are you using <div class="block"> instead of <blockquote>?

If a specific HTML entity exists, it's best to use it so devices can treat it properly... even if the device overrides CSS (like many Android readers) or doesn't have CSS at all.

Similar reasoning why you want to use <i> or <em> instead of <span class="italics">, or <h1> instead of <div class="heading1">.

<div> + <span> are completely blank slates... where <em> and <h1> tell the device something + may enable extra underlying functionality:
  • <em> might be spoken differently by Text-to-Speech.
  • Headings allow screen readers to jump around documents.

Quote:
Originally Posted by Jellby View Post
Reasonable top, left and bottom margin should be enough to set the blockquote apart from the surrounding text.
Agreed.

These past few years, for similar reasoning, I've also been tempted to remove the right margin on my blockquotes to squeeze in more text. I've been doing a lot more reading on my cellphone, and some of these large blockquotes take up enormous amount of screen.

Quote:
Originally Posted by Jellby View Post
Another "trick" I sometimes use is replacing text-indent inside the blockquote with some vertical spacing between paragraphs (not a full line, something like 0.5em).
This type of spacing is also called "block indent". (Paragraphs with no indent + gap between each paragraph.)
Tex2002ans is offline   Reply With Quote
Old 08-07-2020, 11:19 PM   #10
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,552
Karma: 14325282
Join Date: Nov 2019
Device: none
Quote:
Originally Posted by Tex2002ans View Post
Are you using <div class="block"> instead of <blockquote>?
I have things that are "blocks" but not really block quotes; letter, telegram, poem, notice (sign), etc. So I use, for example, <div class="block poem">. The common / shared stuff is in the css for block, then the specific stuff is in the others (div.letter, div.poem, etc.).

It seems to me that I could instead use
Code:
div.poem, div.letter, div.telegram, etc. {
    /* common block stuff here */
}
div.poem {
    /* poem specific stuff here */
}
I don't know if one is better than the other.

Last edited by hobnail; 08-07-2020 at 11:24 PM.
hobnail is offline   Reply With Quote
Old 08-08-2020, 09:24 AM   #11
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,101
Karma: 18727053
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Quote:
Originally Posted by hobnail View Post

It seems to me that I could instead use
Code:
div.poem, div.letter, div.telegram, etc. {
    /* common block stuff here */
}
div.poem {
    /* poem specific stuff here */
}
I don't know if one is better than the other.
That's the technique I use, but I don't enumerate the common block selectors:

Code:
div {
    /* common block stuff here */
}
div.poem {
    /* poem specific stuff here */
}
div.letter {
    /* letter specific stuff here */
}
div.news {
    /* news article specific stuff here */
}
div.email {
    /* email specific stuff here */
}
As long as the common stuff is listed first, any specific changes listed below have priority. It may not be 'better' but it makes the code a little simpler/shorter... I don't need to see the word 'block' on every div...I already know it's a block because it's in a div tag.

Last edited by Turtle91; 08-08-2020 at 09:28 AM.
Turtle91 is offline   Reply With Quote
Old 08-08-2020, 11:51 AM   #12
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,552
Karma: 14325282
Join Date: Nov 2019
Device: none
Quote:
Originally Posted by Turtle91 View Post
It may not be 'better' but it makes the code a little simpler/shorter... I don't need to see the word 'block' on every div...I already know it's a block because it's in a div tag.
That's true but something in my brain prefers to have things explicitly laid out.

Quote:
Originally Posted by Turtle91 View Post
As long as the common stuff is listed first, any specific changes listed below have priority.
My understanding is that the unadorned div could be at the bottom and would still have lower precedence and be overridden by the ones above.
hobnail is offline   Reply With Quote
Old 08-08-2020, 03:12 PM   #13
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: 311
Karma: 3196258
Join Date: Oct 2015
Location: Madison, WI
Device: Kindle 5th Gen
Quote:
Originally Posted by hobnail View Post
I have things that are "blocks" but not really block quotes; letter, telegram, poem, notice (sign), etc. So I use, for example, <div class="block poem">. The common / shared stuff is in the css for block, then the specific stuff is in the others (div.letter, div.poem, etc.).

It seems to me that I could instead use
Code:
div.poem, div.letter, div.telegram, etc. {
    /* common block stuff here */
}
div.poem {
    /* poem specific stuff here */
}
I don't know if one is better than the other.
I think it’s ok to use blockquote for those things too, given that they are quotes from an outside source. Admittedly feels a little weird in conversation to “quote” a sign, but I think it does make some sense in a markup semantics context.
phillipgessert is offline   Reply With Quote
Old 08-08-2020, 03:26 PM   #14
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,552
Karma: 14325282
Join Date: Nov 2019
Device: none
Quote:
Originally Posted by phillipgessert View Post
I think it’s ok to use blockquote for those things too, given that they are quotes from an outside source. Admittedly feels a little weird in conversation to “quote” a sign, but I think it does make some sense in a markup semantics context.
That's how I felt as well, and was using it that way. But Tex2002ans gives that the thumbs down. W3schools gives the following as an example usage: <blockquote cite="http://www.worldwildlife.org/who/index.html"> and I think that the cite usage is meant to be an indication that it should really be a direct quote from some other source. I'm ok with being semantically fussy and so I made my "block" class.

But it's sort of funny; when I rework a Project Gutenberg book; they'll have all of those things that I use my block class for, letters, poems, etc. in a div and sometimes the div is in a blockquote, but it all has double quotes around it. I've taken to removing them since it's set off with indentation and obviously a "quote."
hobnail is offline   Reply With Quote
Old 08-08-2020, 03:54 PM   #15
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: 311
Karma: 3196258
Join Date: Oct 2015
Location: Madison, WI
Device: Kindle 5th Gen
Quote:
Originally Posted by hobnail View Post
That's how I felt as well, and was using it that way. But Tex2002ans gives that the thumbs down. W3schools gives the following as an example usage: <blockquote cite="http://www.worldwildlife.org/who/index.html"> and I think that the cite usage is meant to be an indication that it should really be a direct quote from some other source. I'm ok with being semantically fussy and so I made my "block" class.

But it's sort of funny; when I rework a Project Gutenberg book; they'll have all of those things that I use my block class for, letters, poems, etc. in a div and sometimes the div is in a blockquote, but it all has double quotes around it. I've taken to removing them since it's set off with indentation and obviously a "quote."
Well, shoot. Can't stand divs. Rationalize it to myself with, I don't lose anything by stretching the definition that I don't also lose by using a div, but perhaps I should examine that more.
phillipgessert is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How to convert straight quotes to smart 'curly' typographer's quotes bookman156 ePub 52 06-20-2016 03:09 PM
Block Quotes / Moon+Reader lazorbeam Android Devices 11 03-03-2016 11:20 AM
Pocket and displaying (block)quotes Anak Kobo Reader 3 12-06-2013 10:35 PM
Textile output problem with block quotes? Snorkledorf Conversion 4 03-07-2012 08:33 PM
Conversion from azw: block quotes pbw Conversion 0 02-14-2012 05:42 PM


All times are GMT -4. The time now is 07:41 AM.


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