}
}
protected static String replaceMentions(String content) {
Jerry doc = jerry(content);
doc.$("a").each(new JerryFunction() {
public boolean onNode(Jerry linkHtml, int i) {
final String link = linkHtml.attr("href");
Matcher matcher = PROFILE_URL.matcher(link);
if (matcher.matches()) {