plugins/geshi/geshi/latex.php
changeset 0 441963e5b07a
child 2 9e3258dfae15
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plugins/geshi/geshi/latex.php	Sun Feb 10 18:10:52 2008 -0500
@@ -0,0 +1,189 @@
+<?php
+/*************************************************************************************
+ * latex.php
+ * -----
+ * Original Author: efi
+ * modified by Matthias Pospiech (mail@matthiaspospiech.de)
+ *************************************************************************************
+ *
+ *   This file is not yet part of GeSHi. (and is not compatible to the 1.1+ branch)
+ *
+ *   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
+ *
+ ************************************************************************************/
+
+if (isset($this) && is_a($this, 'GeSHi')) {
+    $this->set_symbols_highlighting(false);
+    $this->set_numbers_highlighting(false);
+}
+
+$language_data = array (
+    'LANG_NAME' => 'LaTeX',
+    'COMMENT_SINGLE' => array(1 => '%'),
+    'COMMENT_MULTI' => array(),
+    'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
+    'QUOTEMARKS' => array(),
+    'ESCAPE_CHAR' => '',
+    'KEYWORDS' => array(
+        ),
+    'SYMBOLS' => array(
+        '.', ',','\\',"~", "{", "}", "[", "]", "$"
+        ),
+    'CASE_SENSITIVE' => array(
+        GESHI_COMMENTS => true,
+        1 => false,
+        2 => false,
+        3 => false,
+        4 => false,
+        ),
+    'STYLES' => array(
+        'KEYWORDS' => array(
+            ),
+        'COMMENTS' => array(
+            1 => 'color: #808080; font-style: italic;'
+            ),
+        'ESCAPE_CHAR' => array(
+            ),
+        'BRACKETS' => array(
+            ),
+        'STRINGS' => array(
+            ),
+        'NUMBERS' => array(
+            ),
+        'METHODS' => array(
+            ),
+        'SYMBOLS' => array(
+            ),
+        'REGEXPS' => array(
+            1 => 'color: #00A000; font-weight: bold;',  // Math inner
+            2 => 'color: #800000; font-weight: normal;', // \keyword #202020
+            3 => 'color: #2222D0; font-weight: normal;', // {...}
+            4 => 'color: #2222D0; font-weight: normal;', // [Option]
+            5 => 'color: #00A000; font-weight: normal;', // Mathe #CCF020
+            6 => 'color: #F00000; font-weight: normal;', // Structure \begin
+            7 => 'color: #F00000; font-weight: normal;', // Structure \end
+            8 => 'color: #F00000; font-weight: normal;', // Structure: Labels
+            //9 => 'color: #F00000; font-weight: normal;',  // Structure
+            10 => 'color: #0000D0; font-weight: bold;',  // Environment
+            11 => 'color: #0000D0; font-weight: bold;',  // Environment
+        ),
+        'SCRIPT' => array(
+            )
+        ),
+    'URLS' => array(
+        ),
+    'OOLANG' => false,
+    'OBJECT_SPLITTERS' => array(
+        ),
+    'REGEXPS' => array(
+        // Math inner
+        1 => array(
+            GESHI_SEARCH => "(\\\\begin\\{)(equation|displaymath|eqnarray|subeqnarray|math|multline|gather|align|alignat|flalign )(\\})(.*)(\\\\end\\{)(equation|displaymath|eqnarray|subeqnarray|math|multline|gather|align|alignat|flalign)(\\})",
+            GESHI_REPLACE => '\\4',
+            GESHI_MODIFIERS => 's',
+            GESHI_BEFORE => '\1\2\3',
+            GESHI_AFTER => '\5\6\7'
+            ),
+        //  \keywords
+        2 => array(
+            GESHI_SEARCH => "(\\\\)([a-zA-Z]+)",
+            GESHI_REPLACE => '\1\2',
+            GESHI_MODIFIERS => '',
+            GESHI_BEFORE => '',
+            GESHI_AFTER => ''
+            ),
+        // {parameters}
+        3 => array(
+            GESHI_SEARCH => "(\\{)(.*)(\\})",
+            GESHI_REPLACE => '\2',
+            GESHI_MODIFIERS => '',
+            GESHI_BEFORE => '\1',
+            GESHI_AFTER => '\3'
+            ),
+        // [Option]
+        4 => array(
+            GESHI_SEARCH => "(\[)(.+)(\])",
+            GESHI_REPLACE => '\2',
+            GESHI_MODIFIERS => '',
+            GESHI_BEFORE => '\1',
+            GESHI_AFTER => '\3'
+            ),
+        // Mathe  mit $ ... $
+        5 => array(
+            GESHI_SEARCH => "(\\$)(.+)(\\$)",
+            GESHI_REPLACE => '\1\2\3',
+            GESHI_MODIFIERS => '',
+            GESHI_BEFORE => '',
+            GESHI_AFTER => ''
+            ),
+        // Structure begin
+        6 => array(
+            GESHI_SEARCH => "(\\\\begin)(?=[^a-zA-Z])",
+            GESHI_REPLACE => '\\1',
+            GESHI_MODIFIERS => '',
+            GESHI_BEFORE => '',
+            GESHI_AFTER => '\\2'
+            ),
+        // Structure end
+        7 => array(
+            GESHI_SEARCH => "(\\\\end)(?=[^a-zA-Z])",
+            GESHI_REPLACE => '\\1',
+            GESHI_MODIFIERS => '',
+            GESHI_BEFORE => '',
+            GESHI_AFTER => '\\2'
+            ),
+        //Structure: Label
+        8 => array(
+            GESHI_SEARCH => "(\\\\)(label|pageref|ref|cite)(?=[^a-zA-Z])",
+            GESHI_REPLACE => '\\1\\2',
+            GESHI_MODIFIERS => '',
+            GESHI_BEFORE => '',
+            GESHI_AFTER => '\\3'
+            ),
+// Structure: sections
+/*9 => array(
+            GESHI_SEARCH => "(\\\\)(part|chapter|section|subsection|subsubsection|paragraph|subparagraph)(?=[^a-zA-Z])",
+            GESHI_REPLACE => '\1\\2',
+            GESHI_MODIFIERS => '',
+            GESHI_BEFORE => '',
+            GESHI_AFTER => '\\3'
+            ),*/
+// environment begin
+10 => array(
+            GESHI_SEARCH => "(\\\\begin)(\\{)(.*)(\\})",
+            GESHI_REPLACE => '\\3',
+            GESHI_MODIFIERS => '',
+            GESHI_BEFORE => '',
+            GESHI_AFTER => ''
+            ),
+// environment end
+11 => array(
+            GESHI_SEARCH => "(\\\\end)(\\{)(.*)(\\})",
+            GESHI_REPLACE => '\\3',
+            GESHI_MODIFIERS => '',
+            GESHI_BEFORE => '',
+            GESHI_AFTER => ''
+            ),
+
+// ---------------------------------------------
+        ),
+    'STRICT_MODE_APPLIES' => GESHI_NEVER,
+    'SCRIPT_DELIMITERS' => array(
+        ),
+    'HIGHLIGHT_STRICT_BLOCK' => array(
+        )
+);
+
+?>