Searched refs:Escape (Results 1 – 6 of 6) sorted by relevance
| /dokuwiki/_test/tests/Parsing/Helpers/ |
| H A D | EscapeTest.php | 5 use dokuwiki\Parsing\Helpers\Escape; alias 25 Escape::unescapeBackslashes("before\\{$char}after") 48 $this->assertSame($input, Escape::unescapeBackslashes($input)); 68 $this->assertSame('a\\*b', Escape::unescapeBackslashes('a\\\\*b')); 76 $this->assertSame('a\\*b', Escape::unescapeBackslashes('a\\\\\\*b')); 83 Escape::unescapeBackslashes('/path\\*with\\|special\\#chars') 89 $this->assertSame('plain text', Escape::unescapeBackslashes('plain text')); 94 $this->assertSame('', Escape::unescapeBackslashes('')); 101 $this->assertSame('x\\', Escape::unescapeBackslashes('x\\'));
|
| /dokuwiki/inc/Parsing/ParserMode/ |
| H A D | GfmLink.php | 6 use dokuwiki\Parsing\Helpers\Escape; alias 98 $label = Escape::unescapeBackslashes(substr($match, 1, $sep - 1)); 107 $args[0] = Escape::unescapeBackslashes($args[0]); 136 $alt = Escape::unescapeBackslashes(substr($imageMatch, 2, $sep - 2)); 137 $imgUrl = Escape::unescapeBackslashes($this->extractUrl(substr($imageMatch, $sep + 2, -1)));
|
| H A D | GfmEscape.php | 6 use dokuwiki\Parsing\Helpers\Escape; alias 62 $lookahead . '\\\\' . Escape::PUNCTUATION_CHAR_CLASS,
|
| H A D | GfmCode.php | 7 use dokuwiki\Parsing\Helpers\Escape; alias 116 Escape::unescapeBackslashes(HtmlEntity::decode($info))
|
| /dokuwiki/inc/Parsing/Helpers/ |
| H A D | Escape.php | 15 class Escape class
|
| /dokuwiki/vendor/geshi/geshi/ |
| H A D | CHANGELOG | 209 * Fixed Escape handling for CSS (SF#3080513, yecril71pl, BenBE) 223 * Escape chars in C++/C++Qt handled incorrectly (SF#3122706, C. Pötsch) 291 * Removed backslash as Escape Char in T-SQL (SF#2939199, Bruno Braga) 430 * Added improved Escape Char handling for c, c_mac, cpp and cpp_qt (SF#2458743, BenBE) 440 - Added support for Escape Regular Expressions (BenBE) 453 - Fixed broken Escape chars if classes were disabled
|