Searched refs:wikiText (Results 1 – 2 of 2) sorted by relevance
237 public static String formatWikiText(String wikiText) { in formatWikiText() argument238 if (wikiText == null) { in formatWikiText()244 wikiText = wikiText.concat(STUB_SECTION); in formatWikiText()251 Matcher sectionMatcher = sSectionSplit.matcher(wikiText); in formatWikiText()263 wikiText = builder.toString(); in formatWikiText()267 wikiText = rule.apply(wikiText); in formatWikiText()271 if (!TextUtils.isEmpty(wikiText)) { in formatWikiText()272 return STYLE_SHEET + wikiText; in formatWikiText()
292 String wikiText = ExtendedWikiHelper.getPageContent(query, true); in doInBackground() local293 parsedText = ExtendedWikiHelper.formatWikiText(wikiText); in doInBackground()