Home
last modified time | relevance | path

Searched refs:pageContent (Results 1 – 25 of 64) sorted by relevance

123

/plugin/autonumbering/
H A Dsyntax.php168 public function doNumbering($pageContent){ argument
169 $qtyOccurrences = preg_match_all('/~~(.*?)~~/', $pageContent, $matches);
173 $pageContent = preg_replace('(' . $matches[0][$i] . ')', $number, $pageContent, 1);
176 return $pageContent;
/plugin/combo/ComboStrap/
H A DMarkupRenderUtility.php43 * @param $pageContent - the text (not the id)
47 public static function getInstructionsAndStripPEventually($pageContent, bool $stripOpenAndEnd = true): array argument
52 ->setRequestedMarkupString($pageContent)
H A DPluginUtility.php417 * @param $pageContent
420 public static function render($pageContent): ?string argument
422 return MarkupRenderUtility::renderText2XhtmlAndStripPEventually($pageContent, false);
/plugin/gitbacked/action/
H A Deditcommit.php177 $pageContent = $event->data[0][1];
184 if ($pageContent == '') {
/plugin/diagramsnet/lib/resources/
H A Ddia_i18n.txt557 pageContent=pageContent
H A Ddia_ru.txt557 pageContent=Содержимое страницы
H A Ddia_bg.txt557 pageContent=Съдържание на страницата
H A Ddia_el.txt557 pageContent=Περιεχόμενο σελίδας
H A Ddia_zh.txt557 pageContent=页面内容
H A Ddia_uk.txt557 pageContent=Вміст сторінки
H A Ddia_fa.txt557 pageContent=‫محتوای صفحه‬
H A Ddia_ja.txt557 pageContent=ページ コンテンツ
H A Ddia_he.txt557 pageContent=‫תוכן העמוד‬
H A Ddia_ko.txt557 pageContent=페이지 내용
H A Ddia_th.txt557 pageContent=หน้าเนื้อหา
H A Ddia_zh-tw.txt557 pageContent=頁面內容
H A Ddia_ar.txt557 pageContent=Page Content
H A Ddia_eu.txt557 pageContent=Orriaren edukia
H A Ddia_et.txt557 pageContent=Lehe sisu
H A Ddia_kn.txt557 pageContent=Page Content
H A Ddia_si.txt557 pageContent=Page Content
H A Ddia_sl.txt557 pageContent=Page Content
H A Ddia_ta.txt557 pageContent=Page Content
H A Ddia_bn.txt557 pageContent=Page Content
/plugin/pdfjs/pdfjs/web/
H A Dviewer.js6968 value: function _calculatePhraseMatch(query, pageIndex, pageContent, entireWord) {
6974 matchIdx = pageContent.indexOf(query, matchIdx + queryLen);
6980 if (entireWord && !this._isEntireWord(pageContent, matchIdx, queryLen)) {
6991 value: function _calculateWordMatch(query, pageIndex, pageContent, entireWord) {
7001 matchIdx = pageContent.indexOf(subquery, matchIdx + subqueryLen);
7007 if (entireWord && !this._isEntireWord(pageContent, matchIdx, subqueryLen)) {
7027 var pageContent = this._pageContents[pageIndex];
7039 pageContent = pageContent.toLowerCase();
7044 this._calculatePhraseMatch(query, pageIndex, pageContent, entireWord);
7046 this._calculateWordMatch(query, pageIndex, pageContent, entireWord);

123