Home
last modified time | relevance | path

Searched refs:entities (Results 1 – 8 of 8) sorted by path

/dokuwiki/data/pages/wiki/
H A Dsyntax.txt258 Typography: [[DokuWiki]] can convert simple text characters to their typographically correct entities. Here is an example of recognized characters.
268 The same can be done to produce any kind of HTML, it just needs to be added to the [[doku>entities|pattern file]].
/dokuwiki/inc/Parsing/ParserMode/
H A DEntity.php9 protected $entities = [];
14 * @param string[] $entities
16 public function __construct($entities)
18 $this->entities = $entities;
25 if (!count($this->entities) || $this->pattern != '') return;
28 foreach ($this->entities as $entity) {
37 if (!count($this->entities)) return;
10 protected $entities = array(); global() variable in dokuwiki\\Parsing\\ParserMode\\Entity
17 __construct($entities) global() argument
/dokuwiki/inc/Utf8/
H A DConversion.php11 * Encodes UTF-8 characters to HTML entities
37 * Decodes HTML entities to UTF-8 characters
40 * The entities flag defaults to only decoding numeric entities.
41 * Pass HTML_ENTITIES and named entities, including & < etc.
52 * @param boolean $entities decode name entities in addtition to numeric ones
53 * @return string UTF-8 encoded string with numeric (and named) entities replaced.
55 public static function fromHtml($str, $entities = false)
57 if (!$entities) {
56 fromHtml($str, $entities = false) global() argument
[all...]
/dokuwiki/inc/
H A Dconfutils.php101 * returns a hash of entities
107 static $entities = null;
108 if (!$entities) {
109 $entities = retrieveConfig('entities', 'confToHash');
110 $entities = array_filter($entities, 'strlen');
112 return $entities;
H A Dparserutils.php683 $Renderer->entities = getEntities();
/dokuwiki/inc/parser/
H A Drenderer.php41 public $entities = [];
512 * Uses $this->entities
39 public $entities = array(); global() variable in Doku_Renderer
H A Dxhtml.php750 * Uses $this->entities
756 if (array_key_exists($entity, $this->entities)) {
757 $this->doc .= $this->entities[$entity];
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/
H A DEntities.php213 static $entities = [
584 if (isset($entities[$consumed])) {
590 $this->data = substr_replace($this->data, $entities[$match], $this->position - strlen($consumed) - 1, strlen($match) + 1);
591 $this->position += strlen($entities[$match]) - strlen($consumed) - 1;