plugins/geshi/geshi/d.php
changeset 3 f3e2bbbd2155
parent 2 9e3258dfae15
equal deleted inserted replaced
2:9e3258dfae15 3:f3e2bbbd2155
     2 /*************************************************************************************
     2 /*************************************************************************************
     3  * d.php
     3  * d.php
     4  * -----
     4  * -----
     5  * Author: Thomas Kuehne (thomas@kuehne.cn)
     5  * Author: Thomas Kuehne (thomas@kuehne.cn)
     6  * Copyright: (c) 2005 Thomas Kuehne (http://thomas.kuehne.cn/)
     6  * Copyright: (c) 2005 Thomas Kuehne (http://thomas.kuehne.cn/)
     7  * Release Version: 1.0.8.2
     7  * Release Version: 1.0.8.4
     8  * Date Started: 2005/04/22
     8  * Date Started: 2005/04/22
     9  *
     9  *
    10  * D language file for GeSHi.
    10  * D language file for GeSHi.
    11  *
    11  *
    12  * CHANGES
    12  * CHANGES
    57     'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
    57     'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
    58     'QUOTEMARKS' => array('"', "'"),
    58     'QUOTEMARKS' => array('"', "'"),
    59     'ESCAPE_CHAR' => '',
    59     'ESCAPE_CHAR' => '',
    60     'ESCAPE_REGEXP' => array(
    60     'ESCAPE_REGEXP' => array(
    61         //Simple Single Char Escapes
    61         //Simple Single Char Escapes
    62         1 => "#\\\\[abfnrtv\\'\"?\n]#i",
    62         1 => "#\\\\[abfnrtv\\'\"?\n\\\\]#i",
    63         //Hexadecimal Char Specs
    63         //Hexadecimal Char Specs
    64         2 => "#\\\\x[\da-fA-F]{2}#",
    64         2 => "#\\\\x[\da-fA-F]{2}#",
    65         //Hexadecimal Char Specs
    65         //Hexadecimal Char Specs
    66         3 => "#\\\\u[\da-fA-F]{4}#",
    66         3 => "#\\\\u[\da-fA-F]{4}#",
    67         //Hexadecimal Char Specs
    67         //Hexadecimal Char Specs