blob: a221da3dd048fdc3e851ef929ececcc09536150f [file] [log] [blame]
package com.atlassian.uwc.converters.twiki.cleaners;
public class FixedFont extends RegularExpressionCleaner
{
/**
* this regex is copied from TWiki.pm, essentially
* it's saying this fixed font expression has to end with one
* of the characters in the second matching group ()
*/
public FixedFont()
{
super("=(.*?)=($|[\\s\\,\\.\\;\\:\\!\\?\\)])",
"{{$1}} $2");
}
}