1<?php 2/************************************************************************************* 3 * hq9plus.php 4 * ---------- 5 * Author: Benny Baumann (BenBE@geshi.org) 6 * Copyright: (c) 2008 Benny Baumann (http://qbnz.com/highlighter/) 7 * Release Version: 1.0.8.3 8 * Date Started: 2009/10/31 9 * 10 * HQ9+ language file for GeSHi. 11 * 12 * CHANGES 13 * ------- 14 * 2008/10/31 (1.0.8.1) 15 * - First Release 16 * 17 * TODO 18 * ---- 19 * 20 ************************************************************************************* 21 * 22 * This file is part of GeSHi. 23 * 24 * GeSHi is free software; you can redistribute it and/or modify 25 * it under the terms of the GNU General Public License as published by 26 * the Free Software Foundation; either version 2 of the License, or 27 * (at your option) any later version. 28 * 29 * GeSHi is distributed in the hope that it will be useful, 30 * but WITHOUT ANY WARRANTY; without even the implied warranty of 31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 32 * GNU General Public License for more details. 33 * 34 * You should have received a copy of the GNU General Public License 35 * along with GeSHi; if not, write to the Free Software 36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 37 * 38 ************************************************************************************/ 39$language_data = array ( 40 'LANG_NAME' => 'HQ9+', 41 'COMMENT_SINGLE' => array(), 42 'COMMENT_MULTI' => array(), 43 'COMMENT_REGEXP' => array(), 44 'CASE_KEYWORDS' => GESHI_CAPS_UPPER, 45 'QUOTEMARKS' => array(), 46 'ESCAPE_CHAR' => '', 47 'KEYWORDS' => array( 48 ), 49 'SYMBOLS' => array( 50 'H', 'Q', '9', '+', 'h', 'q' 51 ), 52 'CASE_SENSITIVE' => array( 53 GESHI_COMMENTS => false 54 ), 55 'STYLES' => array( 56 'KEYWORDS' => array( 57 ), 58 'COMMENTS' => array( 59 ), 60 'BRACKETS' => array( 61 0 => 'color: #66cc66;' 62 ), 63 'STRINGS' => array( 64 0 => 'color: #ff0000;' 65 ), 66 'NUMBERS' => array( 67 ), 68 'METHODS' => array( 69 ), 70 'SYMBOLS' => array( 71 0 => 'color: #a16000;' 72 ), 73 'ESCAPE_CHAR' => array( 74 ), 75 'SCRIPT' => array( 76 ), 77 'REGEXPS' => array( 78 ) 79 ), 80 'URLS' => array( 81 ), 82 'OOLANG' => false, 83 'OBJECT_SPLITTERS' => array( 84 ), 85 'REGEXPS' => array( 86 ), 87 'STRICT_MODE_APPLIES' => GESHI_NEVER, 88 'SCRIPT_DELIMITERS' => array( 89 ), 90 'HIGHLIGHT_STRICT_BLOCK' => array( 91 ), 92 'TAB_WIDTH' => 4, 93 'PARSER_CONTROL' => array( 94 'ENABLE_FLAGS' => array( 95 'KEYWORDS' => GESHI_NEVER, 96 'COMMENTS' => GESHI_NEVER, 97 'STRINGS' => GESHI_NEVER, 98 'REGEXPS' => GESHI_NEVER, 99 'NUMBERS' => GESHI_NEVER 100 ) 101 ) 102); 103 104?> 105