Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*************************************************************************************
- * <dm.php>
- * ---------------------------------
- * Author: <name> (<e-mail address>)
- * Copyright: (c) 2008 <name> (<website URL>)
- * Release Version: <GeSHi release>
- * Date Started: <date started>
- *
- * <dm> language file for GeSHi.
- *
- * <any-comments...>
- *
- * CHANGES
- * -------
- * <date-of-release> (<GeSHi release>)
- * - First Release
- *
- * TODO (updated <date-of-release>)
- * -------------------------
- * <things-to-do>
- *
- *************************************************************************************
- *
- * This file is part of GeSHi.
- *
- * GeSHi is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * GeSHi is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GeSHi; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- ************************************************************************************/
- $language_data = array(
- 'LANG_NAME' => 'DM',
- 'COMMENT_SINGLE' => array(
- 1 => '//'
- ),
- 'COMMENT_MULTI' => array('/*' => '*/'),
- 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
- 'QUOTEMARKS' => array(
- 0 => '"',
- 1 => "'"
- ),
- 'ESCAPE_CHAR' => '\\',
- 'HARDQUOTE' => array(),
- 'HARDESCAPE' => array(),
- 'HARDCHAR' => '',
- 'NUMBERS' =>
- GESHI_NUMBER_INT_BASIC | GESHI_NUMBER_OCT_PREFIX | GESHI_NUMBER_HEX_PREFIX |
- GESHI_NUMBER_FLT_SCI_ZERO,
- 'KEYWORDS' => array(
- 1 => array(
- 'arg', 'as', 'break', 'const', 'continue', 'del', 'do', 'else',
- 'for', 'global', 'goto', 'if', 'in', 'new', 'proc', 'return', 'set',
- 'static', 'switch', 'tmp', 'to', 'var', 'verb', 'while', 'step'
- )
- ),
- 'CASE_SENSITIVE' => array(
- 1 => true
- ),
- 'SYMBOLS' => array(
- 0 => array(
- '!', '%', '&', '(', ')', '*', '+', '-', '.', '/', ':', '<', '>',
- '?', '[', ']', '^', '|', '{', '}', '~'
- )
- ),
- 'STYLES' => array(
- 'KEYWORDS' => array(
- 1 => 'color: #00F'
- ),
- 'COMMENTS' => array(
- 1 => 'font-style: italic; color: #646464;',
- 2 => 'color: #008000;',
- 'MULTI' => 'font-style: italic; color: #646464;'
- ),
- 'ESCAPE_CHAR' => array(''),
- 'BRACKETS' => array(),
- 'STRINGS' => array(
- 0 => 'color: #0096B4;'
- ),
- 'NUMBERS' => array(
- 1 => 'color: #E10000'
- ),
- 'METHODS' => array(),
- 'SYMBOLS' => array(
- 0 => 'color: #000000; font-weight: bold;'
- ),
- 'REGEXPS' => array(),
- 'SCRIPT' => array()
- ),
- 'URLS' => array(
- 1 => ''
- ),
- 'OOLANG' => false,
- 'OBJECT_SPLITTERS' => array(),
- 'REGEXPS' => array(),
- 'STRICT_MODE_APPLIES' => GESHI_MAYBE,
- 'SCRIPT_DELIMITERS' => array(),
- 'HIGHLIGHT_STRICT_BLOCK' => array(),
- 'TAB_WIDTH' => 4
- );
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement