use of com.m2mobi.markymarkcommon.markdownitems.inline.StrikeString in project MarkyMark-Android by M2Mobi.
the class StrikeRule method toMarkDownString.
@Override
public MarkDownString toMarkDownString(final String pContent) {
Matcher matcher = getRegex().matcher(pContent);
String content = "";
if (matcher.find()) {
content = matcher.group(1);
}
return new StrikeString(content, true);
}
Aggregations