| | import static com.keenwrite.util.ProtocolScheme.getProtocol; |
| | import static com.whitemagicsoftware.keenquotes.lex.FilterType.FILTER_XML; |
| | -import static com.whitemagicsoftware.keenquotes.parser.Curler.CHARS; |
| | import static java.lang.String.format; |
| | import static java.lang.String.valueOf; |
 |
| | public final class XhtmlProcessor extends ExecutorProcessor<String> { |
| | private final static Curler sTypographer = |
| | - new Curler( contractions(), CHARS, FILTER_XML ); |
| | + new Curler( createContractions(), FILTER_XML, true ); |
| | |
| | private final ProcessorContext mContext; |
 |
| | * @return List of contractions to use for curling straight quotes. |
| | */ |
| | - private static Contractions contractions() { |
| | + private static Contractions createContractions() { |
| | return new Contractions.Builder().build(); |
| | } |