The style "font-variant:small-caps" is not recognised by all ePub readers. This style produces capitalised text that is slightly smaller than the main text. The plugin has been updated to include an option for processing span tags "Change to UPPER" that changes the text that has the style "font-variant:small-caps" to upper case. It also has another option for processing this style, "Change to small UPPER". This is described in more detail in the updated ePub manual for this plugin. The update for the plugin and the manual is in the first post in this thread.
@gipsy: You suggested correcting errors such as "acknovvledge" to "acknowledge" by spliting the mispelt word into two groups; it is more straightforward to use a regex expression to replace "acknovvledge" with "acknowledge". You could correct this error using this plugin by adding the code:
CorrectText("Changed acknovvledge to acknowledge", "acknovvledge", "acknowledge")
|