Paul, you can fix this right in Flare.
Instead of using the "inline" codes such as {b} {/b} to format the auto-number, use the mc-auto-number-class attribute to call a span class. Works beautifully in all outputs.
Here's an example from one of my stylesheets:
- Code: Select all
p.Note
{
mc-auto-number-format: 'NOTE: ';
mc-auto-number-class: MinorNotice;
}
span.MinorNotice
{
font-weight: bold;
}
p.Important
{
mc-auto-number-format: 'IMPORTANT! ';
mc-auto-number-class: MajorNotice;
}
span.MajorNotice
{
font-weight: bold;
color: red;
}
Cheers!