// Always push the font used
palette.getI18n().pushSpecialTable(palette.getParSc().getFontName(sStyleName));
// Apply the style
BeforeAfter ba = new BeforeAfter();
Context ic = (Context) oc.clone();
palette.getParSc().applyParStyle(sStyleName,ba,ic);
// Do conversion
ldp.append(ba.getBefore());
if (ic.isVerbatim()) {
palette.getInlineCv().traverseVerbatimInlineText(node,ldp,ic,false);
}
else {
palette.getInlineCv().traverseInlineText(node,ldp,ic,false);
}
ldp.append(ba.getAfter());
// Add a blank line except within verbatim and last in a block:
if (!bLastInBlock && !ic.isVerbatim()) { ldp.nl(); }
// Flush any floating frames from this paragraph
palette.getDrawCv().flushFloatingFrames(ldp,ic);