shBrushLatex.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * SyntaxHighlighter
  3. * http://alexgorbatchev.com/
  4. *
  5. * SyntaxHighlighter is donationware. If you are using it, please donate.
  6. * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
  7. *
  8. * @version
  9. * 2.0.296 (March 01 2009)
  10. *
  11. * @copyright
  12. * Copyright (C) 2004-2009 Alex Gorbatchev.
  13. *
  14. * @license
  15. * This file is part of SyntaxHighlighter.
  16. *
  17. * SyntaxHighlighter is free software: you can redistribute it and/or modify
  18. * it under the terms of the GNU General Public License as published by
  19. * the Free Software Foundation, either version 3 of the License, or
  20. * (at your option) any later version.
  21. *
  22. * SyntaxHighlighter is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU General Public License
  28. * along with SyntaxHighlighter. If not, see <http://www.gnu.org/licenses/>.
  29. *
  30. *
  31. * Very simple Latex brush
  32. * http://www.jorgemarsal.com/blog/
  33. */
  34. SyntaxHighlighter.brushes.Latex = function()
  35. {
  36. var keywords = 'if fi then elif else for do done until while break continue case function return in eq ne gt lt ge le';
  37. //var commands = 'include usepackage begin end ref label includegraphics';
  38. this.regexList = [
  39. { regex: new RegExp('%.*','gm'), css: 'comments' }, // one line comments
  40. { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings
  41. { regex: new RegExp('\\\\\\w*','gm'), css: 'keyword' }, // commands
  42. { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'function' }, // keywords
  43. ];
  44. }
  45. SyntaxHighlighter.brushes.Latex.prototype = new SyntaxHighlighter.Highlighter();
  46. SyntaxHighlighter.brushes.Latex.aliases = ['latex', 'tex'];