MediaWiki mw = MediaWiki.getMediaWikiAccess(this);
if (textExpanded != null) {
textExpanded.setText(mw.expandTemplates(getWikipedia(), title, textOriginal.getText()));
}
if (htmlPreview != null) {
String text = mw.parseText(getWikipedia(), title, textOriginal.getText());
htmlPreview.setHtml(
"<html><head>" +
"</head><body>" + text + "</body></html>");
}
} catch (APIException e) {