Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 05-24-2012, 03:31 PM   #31
kiwidude
Calibre Plugins Developer
kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.
 
Posts: 4,636
Karma: 2162064
Join Date: Oct 2010
Location: Australia
Device: Kindle Oasis
Quote:
Originally Posted by JSWolf View Post
My copy of Sigil also replaces the </p> with </h2> when I use the second header style. I have no idea why yours leaves the </p> alone.
Thats a typo on my part - my point being that leaving the class is not desired in this case. Yes if the *only* point of applying header tags was for building a TOC I can see why you would be happy with it. But the fact is that unless the original style had everything specified on it (which often it doesn't) then applying a heading tag will screw with the appearance, and you end up with a frankenstein of whatever the original text was plus whatever the defaults for the heading are.

Last edited by kiwidude; 05-24-2012 at 03:33 PM.
kiwidude is offline   Reply With Quote
Old 05-25-2012, 04:17 AM   #32
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 kiwidude View Post
I don't want my headings to have the same style as my paragraph text. *Ever*
But the class could be anything, and whether or not it affects the style of the heading is something that cannot be determined without a deeper analysis of the CSS. Take this example:

Code:
p { margin: 0; text-indent: 1em; }
h2 { text-align: center, margin: 2em 0 1em 0; }
.important { font-style: italic; color: red; }
If you have <p class="important">, you'd probably want it to be <h2 class="important">
Jellby is online now   Reply With Quote
Advert
Old 05-25-2012, 04:57 AM   #33
Serpentine
Evangelist
Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.
 
Posts: 416
Karma: 1045911
Join Date: Sep 2011
Location: Cape Town, South Africa
Device: Kindle 3
Quote:
Originally Posted by Jellby View Post
If you have <p class="important">, you'd probably want it to be <h2 class="important">
Personally, while I can see what you're getting at; it's such unexpected behavior that I'm sure it does more harm than good.

I think if that were the case that headings were important, they would be made as such in their css (i.e. h2 {...}), rather than indirectly. If it were not the case, and this were somehow special, I'm sure someone editing would have no problem moving the tag by hand in the code view. Considering they are using the book view for editing, do you really think that they understand this?

It's just one of those things which should be kept as simple as possible, especially if the future holds custom tag/class etc options for that menu.

Last edited by Serpentine; 05-25-2012 at 04:59 AM.
Serpentine is offline   Reply With Quote
Old 05-25-2012, 07:04 AM   #34
kiwidude
Calibre Plugins Developer
kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.kiwidude ought to be getting tired of karma fortunes by now.
 
Posts: 4,636
Karma: 2162064
Join Date: Oct 2010
Location: Australia
Device: Kindle Oasis
Perhaps there are two distinct use cases here.

Use Case 1: your chapter heading already has a distinct class assigned to it that is dedicated just to those headings. In that circumstance your only reason for using the <heading> style dropdown is for the purposes of building a TOC. Note however that unless your heading style is very highly specified you are still going to alter the appearance of your headings, which may or may not be desirable. This is what the current Sigil behaviour suits well as per the example from Jellby above.

Use Case 2: You are using Sigil as a book editor to cleanup a book, and the chapter headings do not already have a dedicated style. In this case the chapter headings are often intermingled with standard paragaraph text, heck sometimes even appended to the end of a paragraph block if its a really bad scan/conversion. Here is where you don't want Sigil to be "inheriting" whatever rubbish style the headings had previously underneath.

I've only ever used Sigil book view to apply headings in the second case, since other than for splitting pages it is the only time I would edit in book view. I guess I saw the heading dropdown with "Heading 1" etc similar to choosing a heading style in word - once applied, your text gets that (and *only* that) "heading style". Which used to be the case, the text would only get a <h3> or whatever tag around it.

I don't know the answer, I just find the current behaviour not useful since I am unlikely to go through a retail ePub page by page changing styles in book view to build a TOC, since regex is way faster. Anyways, hope that explains it better from my head.
kiwidude is offline   Reply With Quote
Old 05-25-2012, 07:25 AM   #35
meme
Sigil developer
meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.
 
Posts: 1,275
Karma: 1101600
Join Date: Jan 2011
Location: UK
Device: Kindle PW, K4 NT, K3, Kobo Touch
Hmm, well I can see why both might be desired. But I'd guess that if you are using Book View then you don't really know or care much about the HTML underneath (at least for the time you're using Book View). In that case you might want the selection of the format to nuke all other formats. And if you want to retain those classes, you are more likely to use Code View anyway since Book View will often not apply styles in the way you want. Whether it'll change or not is another issue, but it might be something you can customize in the new version.
meme is offline   Reply With Quote
Advert
Old 05-25-2012, 01:42 PM   #36
Thalia Helikon
Enthusiast
Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.Thalia Helikon figured out that Keyser Söze was the Kevin Spacey character in less than 20 minutes.
 
Thalia Helikon's Avatar
 
Posts: 35
Karma: 110336
Join Date: Dec 2011
Location: Los Angeles, CA
Device: Kindle n-T, Nook Color Tablet, Nexus 6
the great is the enemy of the good

Quote:
Originally Posted by kiwidude View Post
Perhaps there are two distinct use cases here....

Use Case 2: You are using Sigil as a book editor to cleanup a book, and the chapter headings do not already have a dedicated style. In this case the chapter headings are often intermingled with standard paragaraph text, heck sometimes even appended to the end of a paragraph block if its a really bad scan/conversion. Here is where you don't want Sigil to be "inheriting" whatever rubbish style the headings had previously underneath.

I've only ever used Sigil book view to apply headings in the second case, ...- once applied, your text gets that (and *only* that) "heading style". Which used to be the case, the text would only get a <h3> or whatever tag around it.
)
Some of my epubs are converted from Microsoft word, from plain text, or --God help me --from PDFs, and they have layers and layers of garbage.

I only work in code view in Sigil, and I select each rubbish paragraph style, do a global search and replace each one with <p>. Then I find the Chapter hypercode, and perform a global search and replace with <h2>.

I would be perfectly content to have only 2 categories in my ebook-- <p> and <h2>-- all I want is flowable text that is left aligned and a table of contents.

I would rather spend more time READING a book than fussing endlessly.

As I said, I don't know CSS, and I don't know HTML-- I'm learning as I'm doing. I borrow regex strings from this forum to clean up page headers and footers from scanned books, or extra carriage returns from text files. Each time I'm successful, I'm ready to learn something new.
Thalia Helikon is offline   Reply With Quote
Old 05-25-2012, 10:22 PM   #37
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: 73,943
Karma: 128903250
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 kiwidude View Post
Sorry meme but we are going to agree to disagree on what it does being "right" on this one

I don't want my headings to have the same style as my paragraph text. *Ever*. But that is what the current Sigil behaviour does. In the "good old days" if I had a really badly formatted document (maybe a bad ocr where a regex isn't going to find all occurrences) I would use Book View to scroll through, fix paragraphs, chop pages, give the chapter headings an h3 or whatever style, flick to the stylesheet to add h3 {text-align: center} and it would be job done.

However now it is pointless using the book view style dropdown. Inheriting its existing styles is in my mind a regression that took place in 0.4.x compared to its original behaviour. Clearly you know way more than me about how difficult this is underneath the covers, I just found it strange it used to work the way I want it.
So change the class for your chapter headers. Sigil isn't changing them because they could be correct.
JSWolf is offline   Reply With Quote
Old 05-25-2012, 10:28 PM   #38
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: 73,943
Karma: 128903250
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Let me make this simple and show you how it's done and how to do it your way easily.

I'll start with chapter headers using <p class="para">Chapter One</p>. We change that to <h2 class="para">Chapter One</h2>. With me so far? Good. Now you've fixed all the chapter titles to be <h2 class="para">chaptertitle</h2> and that's good except you don't want the class there. Now the easy part begins. All you do is search <h2 class="para"> and replace it with <h2>. See, easy. All it takes is one extra simple step and it works and it gets the job done.

Did you follow that?
JSWolf is offline   Reply With Quote
Old 05-25-2012, 10:45 PM   #39
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: 27,547
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by JSWolf View Post
Let me make this simple and show you how it's done and how to do it your way easily.

I'll start with chapter headers using <p class="para">Chapter One</p>. We change that to <h2 class="para">Chapter One</h2>. With me so far? Good. Now you've fixed all the chapter titles to be <h2 class="para">chaptertitle</h2> and that's good except you don't want the class there. Now the easy part begins. All you do is search <h2 class="para"> and replace it with <h2>. See, easy. All it takes is one extra simple step and it works and it gets the job done.
That would work fine, I guess... if I wanted to spend all day correcting an ebook with 100+ chapters.

Or I could just search for <p class=.*?>Chapter(.*?)</p> and replace it with <h2>Chapter\1</h2> and call it a day.

Last edited by DiapDealer; 05-25-2012 at 10:53 PM.
DiapDealer is offline   Reply With Quote
Old 05-26-2012, 10:24 AM   #40
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 29,792
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by JSWolf View Post
Let me make this simple and show you how it's done and how to do it your way easily.

I'll start with chapter headers using <p class="para">Chapter One</p>. We change that to <h2 class="para">Chapter One</h2>. With me so far? Good. Now you've fixed all the chapter titles to be <h2 class="para">chaptertitle</h2> and that's good except you don't want the class there. Now the easy part begins. All you do is search <h2 class="para"> and replace it with <h2>. See, easy. All it takes is one extra simple step and it works and it gets the job done.

Did you follow that?
I do it all in 1 pass: <p class="para">Chapter One</p> and create a unique class just in case I want to style it (now or later). (The bloat, is tiny for chapter heads.

Code:
<p class="para">Chapter (.+)</p>
Code:
<h2 class="chapno">Chapter \1</h2>
Code:
.chapno {display: block}
theducks is online now   Reply With Quote
Old 05-26-2012, 01:28 PM   #41
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
If all your <h2> are class="chapno", you don't need the class at all to style them.

It might be interesting, however, to have the possibility of styling the word "Chapter" and the chapter number (and the title, if any) separately, with something like this:

Code:
<h2><span class="name">Chapter</span> <span class="num">1</span><br/>
<span class="title">An Unexpected Party</span></h2>
Jellby is online now   Reply With Quote
Old 05-26-2012, 01:50 PM   #42
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 29,792
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by Jellby View Post
If all your <h2> are class="chapno", you don't need the class at all to style them.

It might be interesting, however, to have the possibility of styling the word "Chapter" and the chapter number (and the title, if any) separately, with something like this:

Code:
<h2><span class="name">Chapter</span> <span class="num">1</span><br/>
<span class="title">An Unexpected Party</span></h2>
There are all sorts of fun variations. This is one I recently saw:
Code:
<h2 class="calibre9" id="calibre_pb_21"><span class="calibre10"><span class="calibre28">&nbsp;CH</span>A<span class="calibre28">PTER<br />
  1&nbsp;</span></span></h2>
The "A" appears to be is about 20% bigger (the rest is really at 80%)
theducks is online now   Reply With Quote
Old 05-26-2012, 02:43 PM   #43
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: 73,943
Karma: 128903250
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 DiapDealer View Post
That would work fine, I guess... if I wanted to spend all day correcting an ebook with 100+ chapters.

Or I could just search for <p class=.*?>Chapter(.*?)</p> and replace it with <h2>Chapter\1</h2> and call it a day.
But some books don't use the work Chapter. So you can get One, Two, Three, etc.. for your chapter titles. So there's no way to fix it easily with regex is the class uses is also used elsehwere in the book. The way I suggested uses the heading option to change the chapter headers from <p to <h2 and that gives you then the way to do the search/replace easily. So sure, your way would work only if Chapter was a used word in all the chapter titles.
JSWolf is offline   Reply With Quote
Old 05-26-2012, 02:45 PM   #44
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: 73,943
Karma: 128903250
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 theducks View Post
I do it all in 1 pass: <p class="para">Chapter One</p> and create a unique class just in case I want to style it (now or later). (The bloat, is tiny for chapter heads.

Code:
<p class="para">Chapter (.+)</p>
Code:
<h2 class="chapno">Chapter \1</h2>
Code:
.chapno {display: block}
That's a bit of code bloat I would say. Why not just use...

Code:
<h2>Chapter 1</h2>
and then set h2 as you want for the chapter titles in the CSS?

Code:
h2 {
margin-top: .75em;
margin-bottom: 1em;
text-align: center
}
JSWolf is offline   Reply With Quote
Old 05-26-2012, 02:52 PM   #45
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 29,792
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by JSWolf View Post
That's a bit of code bloat I would say. Why not just use...

Code:
<h2>Chapter 1</h2>
and then set h2 as you want for the chapter titles in the CSS?

Code:
h2 {
margin-top: .75em;
margin-bottom: 1em;
text-align: center
}
Because I might want to use h2 for other things (Sigil does allow them to be marked not in TOC ) with other style.

My chapno usually has Chapter head Margins (and padding for off center placement).
Sheesh! that bloat is minimal. There are lots more frequently (mis)used styling in every single paragraph.
theducks is online now   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Calibre: Chapter Headings Paxman53 Introduce Yourself 5 10-22-2011 09:13 AM
Chapter Headings Paxman53 Conversion 3 10-12-2011 12:31 PM
Chapter Headings on their own page? Help! Lee5150 Calibre 3 10-06-2011 08:12 AM
Why H1 and H2 Chapter Headings? Ransom Calibre 11 08-10-2011 04:29 PM
Help converting chapter headings p3aul Conversion 6 04-03-2011 12:56 PM


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


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