1 | 1 | simandl | <?php |
2 | | | /************************************************************************************* |
3 | | | * text.php |
4 | | | * -------- |
5 | | | * Author: Sean Hanna (smokingrope@gmail.com) |
6 | | | * Copyright: (c) 2006 Sean Hanna |
7 | | | * Release Version: 1.0.8.1 |
8 | | | * Date Started: 04/23/2006 |
9 | | | * |
10 | | | * Standard Text File (No Syntax Highlighting). |
11 | | | * Plaintext language file for GeSHi. |
12 | | | * |
13 | | | * CHANGES |
14 | | | * ------- |
15 | | | * 04/23/2006 (0.5.0) |
16 | | | * - Syntax File Created |
17 | | | * |
18 | | | * 04/27/2006 (1.0.0) |
19 | | | * - Documentation Cleaned Up |
20 | | | * - First Release |
21 | | | * |
22 | | | * TODO (updated 04/27/2006) |
23 | | | * ------------------------- |
24 | | | * |
25 | | | * |
26 | | | ************************************************************************************* |
27 | | | * |
28 | | | * This file is part of GeSHi. |
29 | | | * |
30 | | | * GeSHi is free software; you can redistribute it and/or modify |
31 | | | * it under the terms of the GNU General Public License as published by |
32 | | | * the Free Software Foundation; either version 2 of the License, or |
33 | | | * (at your option) any later version. |
34 | | | * |
35 | | | * GeSHi is distributed in the hope that it will be useful, |
36 | | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
37 | | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
38 | | | * GNU General Public License for more details. |
39 | | | * |
40 | | | * You should have received a copy of the GNU General Public License |
41 | | | * along with GeSHi; if not, write to the Free Software |
42 | | | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
43 | | | * |
44 | | | ************************************************************************************/ |
45 | | | |
46 | | | $language_data = array ( |
47 | | | 'LANG_NAME' => 'Text', |
48 | | | 'COMMENT_SINGLE' => array(), |
49 | | | 'COMMENT_MULTI' => array(), |
50 | | | 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, |
51 | | | 'QUOTEMARKS' => array(), |
52 | | | 'ESCAPE_CHAR' => '', |
53 | | | 'KEYWORDS' => array(), |
54 | | | 'SYMBOLS' => array(), |
55 | | | 'CASE_SENSITIVE' => array( |
56 | | | GESHI_COMMENTS => false |
57 | | | ), |
58 | | | 'STYLES' => array( |
59 | | | 'KEYWORDS' => array(), |
60 | | | 'COMMENTS' => array(), |
61 | | | 'ESCAPE_CHAR' => array(), |
62 | | | 'BRACKETS' => array(), |
63 | | | 'STRINGS' => array(), |
64 | | | 'NUMBERS' => array(), |
65 | | | 'METHODS' => array(), |
66 | | | 'SYMBOLS' => array(), |
67 | | | 'SCRIPT' => array(), |
68 | | | 'REGEXPS' => array() |
69 | | | ), |
70 | | | 'URLS' => array(), |
71 | | | 'OOLANG' => false, |
72 | | | 'OBJECT_SPLITTERS' => array(), |
73 | | | 'REGEXPS' => array(), |
74 | | | 'STRICT_MODE_APPLIES' => GESHI_NEVER, |
75 | | | 'SCRIPT_DELIMITERS' => array(), |
76 | | | 'HIGHLIGHT_STRICT_BLOCK' => array(), |
77 | | | 'PARSER_CONTROL' => array( |
78 | | | 'ENABLE_FLAGS' => array( |
79 | | | 'ALL' => GESHI_NEVER |
80 | | | ), |
81 | | | ) |
82 | | | ); |
83 | | | |
84 | | | ?> |