Home
last modified time | relevance | path

Searched refs:highlight (Results 1 – 9 of 9) sorted by relevance

/dokuwiki/inc/Action/
H A DSearch.php18 protected $highlight = []; variable in dokuwiki\\Action\\Search
58 $search = new \dokuwiki\Ui\Search($this->pageLookupResults, $this->fullTextResults, $this->highlight);
72 $this->fullTextResults = ft_pageSearch($QUERY, $highlight, $INPUT->str('srt'), $after, $before);
73 $this->highlight = $highlight;
/dokuwiki/inc/Ui/
H A DSearch.php17 protected $highlight = []; variable in dokuwiki\\Ui\\Search
24 * @param array $highlight array of strings to be highlighted
26 public function __construct(array $pageLookupResults, array $fullTextResults, $highlight) argument
37 $this->highlight = $highlight;
53 $searchHTML .= $this->getFulltextResultsHTML($this->fullTextResults, $this->highlight);
488 $pagename .= ':' . cleanID(implode(' ', $parsedQuery['highlight']));
535 * @param array $highlight the terms to be highlighted in the results
539 protected function getFulltextResultsHTML($data, $highlight)
556 $resultLink = html_wikilink(':' . $id, null, $highlight);
557 getFulltextResultsHTML($data, $highlight) global() argument
[all...]
/dokuwiki/inc/
H A Dfulltext.php30 * @param array $highlight
37 function ft_pageSearch($query, &$highlight, $sort = null, $after = null, $before = null)
49 $data['highlight'] =& $highlight;
69 $data['highlight'] = $q['highlight'];
290 $id = implode(' ', $parsedQuery['highlight']);
294 $id = implode(' ', $parsedQuery['highlight']);
448 * @param array $highlight
451 function ft_snippet($id, $highlight)
34 ft_pageSearch($query, & $highlight, $sort = null, $after = null, $before = null) global() argument
426 ft_snippet($id, $highlight) global() argument
[all...]
/dokuwiki/vendor/geshi/geshi/
H A DREADME.md10 input the source code you wish to highlight with the language you
H A DCHANGELOG202 * Properly highlight infinity as numbers for J (Ric Sherlock)
797 - Reset extra lines to highlight if source is changed (Diogo Resende)
845 - Having no source to highlight is not an error condition anymore
1006 - Function geshi_highlight added to make it even easier to highlight on the fly
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_media_popup.css148 /* highlight newly uploaded or edited file */
H A Ddesign.less75 /* highlight selected tool */
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/
H A Dsmoothness.css1001 .ui-state-highlight,
1002 .ui-widget-content .ui-state-highlight,
1003 .ui-widget-header .ui-state-highlight {
1012 .ui-state-highlight a,
1013 .ui-widget-content .ui-state-highlight a,
1014 .ui-widget-header .ui-state-highlight a {
1082 .ui-state-highlight .ui-icon,
1083 .ui-button .ui-state-highlight.ui-icon {
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt406 [[wiki:DokuWiki]] can highlight sourcecode, which makes it easier to read. It uses the [[http://qbnz.com/highlighter/|GeSHi]] Generic Syntax Highlighter -- so any language supported by GeSHi is supported. The syntax uses the same code and file blocks described in the previous section, but this time the name of the language syntax to be highlighted is included inside the tag, e.g. ''<nowiki><code java></nowiki>'' or ''<nowiki><file java></nowiki>''.