Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 10-02-2020, 06:16 PM   #1
Rand Brittain
Bookmaker
Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.
 
Posts: 416
Karma: 2143650
Join Date: Sep 2010
Device: Cybook Opus
Replacing All Tags Of One Kind With Another

I've gotten into the habit of using <span class="bold"> for bold text because someone told me a long time ago that <b> was deprecated. It's lately become clear to me that this was incorrect and I should probably be using <strong>.

Is there a way to replace every instance of that particular <span> tag in an ePub, including the closing tag with a <strong> tag, other than doing it all manually?
Rand Brittain is offline   Reply With Quote
Old 10-02-2020, 06:44 PM   #2
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 35,291
Karma: 145435140
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Forma, Clara HD, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by Rand Brittain View Post
I've gotten into the habit of using <span class="bold"> for bold text because someone told me a long time ago that <b> was deprecated. It's lately become clear to me that this was incorrect and I should probably be using <strong>.

Is there a way to replace every instance of that particular <span> tag in an ePub, including the closing tag with a <strong> tag, other than doing it all manually?
Something like:

Find: <span class="bold">(.*?)</span>

Replace: <strong>\1</strong>

might work for you. Backup your file and test a couple of find/replace before doing a replace all. Note that this uses the PCRE flavour used with Sigil. Others may vary and you may need to remove the ? if the default is lazy (minimal match).

Last edited by DNSB; 10-02-2020 at 06:50 PM.
DNSB is offline   Reply With Quote
Advert
Old 10-02-2020, 06:51 PM   #3
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,887
Karma: 128597114
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 Rand Brittain View Post
I've gotten into the habit of using <span class="bold"> for bold text because someone told me a long time ago that <b> was deprecated. It's lately become clear to me that this was incorrect and I should probably be using <strong>.
That again is incorrect. <b> is not deprecated. It works perfectly well in ePub 2/3. You are better using <b> then <strong>.

Quote:
Is there a way to replace every instance of that particular <span> tag in an ePub, including the closing tag with a <strong> tag, other than doing it all manually?
The best way to do this is to install Diaps Editing Toolbag plugin. It's a Calibre editor plugin and will do what you want without the need to create your own regex. It works very well and I use it a lot.
JSWolf is offline   Reply With Quote
Old 10-02-2020, 07:51 PM   #4
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
If you're using Sigil you can use its TagMechanic plugin, which is essentially the same as the Editing Toolbag that JSWolf pointed to.

I'd forgotten about the strong tag; google brought up this article: https://www.seobility.net/en/wiki/Strong_and_Bold_Tags

So you could use strong for things you want to semantically emphasize and style it as bold in your css. In fiction my experience is that when people emphasize something said it's with italics.

So now I'm confused about the difference between the strong and em tags.
hobnail is offline   Reply With Quote
Old 10-02-2020, 08:04 PM   #5
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,887
Karma: 128597114
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 hobnail View Post
If you're using Sigil you can use its TagMechanic plugin, which is essentially the same as the Editing Toolbag that JSWolf pointed to.

I'd forgotten about the strong tag; google brought up this article: https://www.seobility.net/en/wiki/Strong_and_Bold_Tags

So you could use strong for things you want to semantically emphasize and style it as bold in your css. In fiction my experience is that when people emphasize something said it's with italics.

So now I'm confused about the difference between the strong and em tags.
There really aren't any differences between <b>/<strong> and <i>/<em>. By default they are the same. But you can change all of them in CSS. For example, you can style <i> to be bold and <b> to be italic.

In that article, it states...
Quote:
Difference between strong and bold

The difference between the two HTML tags is that bold makes text only visually look bold, while strong also semantically emphasizes the respective text as important and indicates that it is a meaningful word or text section.

This distinction is due to the fact that HTML code differentiates between semantic-logical and physical-visual HTML tags. While the former refer to the meaning (semantics = theory of meaning) of the respective areas, the latter merely define the optical display in browsers.
So when you are reading your eBook and you see text that is coded like <b>Some bold test.</b> and <strong>Some strong text.</strong>, they will both appear bold. There is 0 difference. Unless you've looked at the code, you won't know if the code is <b>, <strong>, or <span class="bold">. So this saying that <strong> emphasizes the text is rubbish. Your TTS is not going to differentiate. It's not going to say bold text any different then it would strong text. This is exactly the same for <i>, <em>, and <span class="italic">.
JSWolf is offline   Reply With Quote
Advert
Old 10-02-2020, 08:20 PM   #6
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,275
Karma: 98804578
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by JSWolf View Post
That again is incorrect. <b> is not deprecated. It works perfectly well in ePub 2/3.
You misunderstand deprecated.
https://en.wikipedia.org/wiki/Deprecation

It means that it is obsolete and should not be used is in new code and will likely not be supported at some possibly unspecified future time. It has nothing to do with whether it works now.
Quote:
You are better using <b> then <strong>.
Why would you use <b> if you are going change to <strong>?

Is it because you are an European?
j.p.s is offline   Reply With Quote
Old 10-02-2020, 10:05 PM   #7
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 j.p.s View Post
"You are better using <b> then <strong>."

Why would you use <b> if you are going change to <strong>?

Is it because you are an European?
I think he meant "than" not "then".
hobnail is offline   Reply With Quote
Old 10-02-2020, 11:48 PM   #8
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,275
Karma: 98804578
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by hobnail View Post
I think he meant "than" not "then".
He is on record saying there is never any excuse for typographic errors, specifically including swapping then for than.
j.p.s is offline   Reply With Quote
Old 10-03-2020, 06:18 AM   #9
davidfor
Grand Sorcerer
davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.
 
Posts: 24,907
Karma: 47303748
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
Quote:
Originally Posted by JSWolf View Post
There really aren't any differences between <b>/<strong> and <i>/<em>. By default they are the same. But you can change all of them in CSS. For example, you can style <i> to be bold and <b> to be italic.

In that article, it states...


So when you are reading your eBook and you see text that is coded like <b>Some bold test.</b> and <strong>Some strong text.</strong>, they will both appear bold. There is 0 difference. Unless you've looked at the code, you won't know if the code is <b>, <strong>, or <span class="bold">. So this saying that <strong> emphasizes the text is rubbish. Your TTS is not going to differentiate. It's not going to say bold text any different then it would strong text. This is exactly the same for <i>, <em>, and <span class="italic">.
After all this time, you really don't get it, do you? But, yet you would scream at someone who suggested using a <p class="chapterHeading"> where the class "chapterHeading" was the same style as a h1 or h2 tag. As you keep saying, why does it matter if they look the same on the screen?

It is about semantics. It is about letting applications such as a TTS handle them differently if it makes sense. And honestly, if the TTS isn't indicating a difference, then it is probably because far to many people who code the books have listened to you. There are semantics involved. We should be expressing them where we can. Then the software can start handling things accordingly.

@Rand Brittain: Use whichever you feel comfortable with. I personally don't like seeing <span class="bold">, but if it was <span class="telepathicSpeach"> and the class telepathicSpeach only set the style to bold text, it would make sense to me (though most people seem to use italics for that). That makes it easy to go back and restyle it later. And if <strong> makes more sense to you than <b> when you are reading the code, then do it that way. Or if <b> feels better to you, use it.
davidfor is offline   Reply With Quote
Old 10-03-2020, 06:27 AM   #10
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,887
Karma: 128597114
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 j.p.s View Post
You misunderstand deprecated.
https://en.wikipedia.org/wiki/Deprecation

It means that it is obsolete and should not be used is in new code and will likely not be supported at some possibly unspecified future time. It has nothing to do with whether it works now.

Why would you use <b> if you are going change to <strong>?

Is it because you are an European?
Please explain to me how you can tell the difference between <b> and <strong> when reading a book? <b> is meant to be bold and <strong> is meant to emphasize something. But really, all they both do is display bold test. You can use either interchangeably. This is silly when you think of it. You cannot read <strong> text and different then you would <b> text.

Prove I'm worog and I'll agree to use <strong> and <em>. Prove to me that you can tell by reading if the text is using <b> or <strong>.
JSWolf is offline   Reply With Quote
Old 10-03-2020, 06:32 AM   #11
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,887
Karma: 128597114
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 davidfor View Post
After all this time, you really don't get it, do you? But, yet you would scream at someone who suggested using a <p class="chapterHeading"> where the class "chapterHeading" was the same style as a h1 or h2 tag. As you keep saying, why does it matter if they look the same on the screen?

It is about semantics. It is about letting applications such as a TTS handle them differently if it makes sense. And honestly, if the TTS isn't indicating a difference, then it is probably because far to many people who code the books have listened to you. There are semantics involved. We should be expressing them where we can. Then the software can start handling things accordingly.
If that really is the case, then <strong> should not be used everyplace bold text is wanted. <b> should be used where the text should be bold but not emphasized. A good example is Star Trek books. They use italics for speech on the other side of the communicator. That should be <i> as it is not emphasized text and should not be read that way. <em> is not appropriate there.

I have not see a single eBook where <strong> was used correctly.Same with <em>. It's either all <b> or <strong> / <i> or <em>. Also, I've never heard of any TTS that read <strong> or <em> any differemt then <b> or <i>. In most cases, the TTS just reads the text the same as it does without any style.

Last edited by JSWolf; 10-03-2020 at 06:35 AM.
JSWolf is offline   Reply With Quote
Old 10-03-2020, 06:46 AM   #12
davidfor
Grand Sorcerer
davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.
 
Posts: 24,907
Karma: 47303748
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
Quote:
Originally Posted by JSWolf View Post
If that really is the case, then <strong> should not be used everyplace bold text is wanted. <b> should be used where the text should be bold but not emphasized. A good example is Star Trek books. They use italics for speech on the other side of the communicator. That should be <i> as it is not emphasized text and should not be read that way. <em> is not appropriate there.
Thank you for proving my point. In that case, <i> probably is the better tag as is not about emphasis. But, if it was about emphasis, such as someone shouting, then using <em> or <strong> could be a better choice.

It's about recording the semantics so that they can be used later. Even if it is just so that the author/book creator can change something later.
davidfor is offline   Reply With Quote
Old 10-03-2020, 06:58 AM   #13
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,887
Karma: 128597114
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 davidfor View Post
Thank you for proving my point. In that case, <i> probably is the better tag as is not about emphasis. But, if it was about emphasis, such as someone shouting, then using <em> or <strong> could be a better choice.

It's about recording the semantics so that they can be used later. Even if it is just so that the author/book creator can change something later.
Going back to the OPs question, there is no way to to change <span class="bold"> to <strong> correctly as every instance would have to be looked at to see if it each instance should be <b> or <strong>. A chapter header should be <b> (for example).
JSWolf is offline   Reply With Quote
Old 10-03-2020, 09:58 AM   #14
davidfor
Grand Sorcerer
davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.
 
Posts: 24,907
Karma: 47303748
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
Quote:
Originally Posted by JSWolf View Post
Going back to the OPs question, there is no way to to change <span class="bold"> to <strong> correctly as every instance would have to be looked at to see if it each instance should be <b> or <strong>. A chapter header should be <b> (for example).
Sorry, that's just plain silly. Several methods have been mentioned for exactly how to do this. Hell, you even said how it could be done. And yes, of course they might need to be examined to check that it make sense. Or which change to use. But, the OP has said nothing about where the code has been used, just wants to know how to do the work.

The question was "how do I do something", not "should I do something". Everything else in this thread is off topic.
davidfor is offline   Reply With Quote
Old 10-03-2020, 11:25 AM   #15
Quoth
the rook, bossing Never.
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 11,075
Karma: 85874891
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
Quote:
Originally Posted by Rand Brittain View Post
someone told me a long time ago that <b> was deprecated. It's lately become clear to me that this was incorrect and I should probably be using <strong>.
It was depreciated and then un-depreciated. They (Web Standards) then decided <b> is literally bold and <strong> is semantic, but always rendered bold unless the CSS does something different. They can be the same via CSS.

It's alleged than some screen readers differentiate between <b> and <strong>, though mine don't!

It's likely you can just search and replace if you feel you need to change it.

Note that while ebooks use HTML and CSS largely the same way as web pages, they are not web pages.

Also a Chapter Heading might not be using <strong> or <b> but an H class. Probably shouldn't be using <b> or <strong> directly. Arguably only a word or phrase inline in a styled (via CSS) paragraph would directly have <b>, <i> and the semantic alternatives.

Last edited by Quoth; 10-03-2020 at 11:31 AM. Reason: Headings
Quoth is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem replacing tags in custom recipe Phoebus Recipes 2 07-05-2016 10:22 AM
Replacing code without replacing text? ElMiko Sigil 6 11-30-2011 08:14 PM
Amazon Tags - Popular tags vs Unique tags. chrisanthropic Writers' Corner 6 09-19-2011 11:18 PM
Replacing multiple tags over 2 lines kmckinley Sigil 7 09-03-2011 10:34 PM
Replacing tags after using them hiperlink Recipes 2 03-28-2011 10:23 AM


All times are GMT -4. The time now is 06:31 PM.


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