StringBuilder newText = new StringBuilder();
newText.append(contents.substring(0, begin));
newText.append("\n");
newText.append(buffer.toString());
newText.append(contents.substring(end));
api.updatePage(
wiki, page, newText.toString(),
wiki.formatComment(
config.getString(WPCConfigurationString.ISBN_ERRORS_PAGE_COMMENT),
true),
false);