KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
2.5KB

  1. <?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.11
  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. $language_data = array (
  46. 'LANG_NAME' => 'Text',
  47. 'COMMENT_SINGLE' => array(),
  48. 'COMMENT_MULTI' => array(),
  49. 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  50. 'QUOTEMARKS' => array(),
  51. 'ESCAPE_CHAR' => '',
  52. 'KEYWORDS' => array(),
  53. 'SYMBOLS' => array(),
  54. 'CASE_SENSITIVE' => array(
  55. GESHI_COMMENTS => false
  56. ),
  57. 'STYLES' => array(
  58. 'KEYWORDS' => array(),
  59. 'COMMENTS' => array(),
  60. 'ESCAPE_CHAR' => array(),
  61. 'BRACKETS' => array(),
  62. 'STRINGS' => array(),
  63. 'NUMBERS' => array(),
  64. 'METHODS' => array(),
  65. 'SYMBOLS' => array(),
  66. 'SCRIPT' => array(),
  67. 'REGEXPS' => array()
  68. ),
  69. 'URLS' => array(),
  70. 'OOLANG' => false,
  71. 'OBJECT_SPLITTERS' => array(),
  72. 'REGEXPS' => array(),
  73. 'STRICT_MODE_APPLIES' => GESHI_NEVER,
  74. 'SCRIPT_DELIMITERS' => array(),
  75. 'HIGHLIGHT_STRICT_BLOCK' => array(),
  76. 'PARSER_CONTROL' => array(
  77. 'ENABLE_FLAGS' => array(
  78. 'ALL' => GESHI_NEVER
  79. ),
  80. )
  81. );
  82. ?>