web.py 918 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. """
  3. pygments.lexers.web
  4. ~~~~~~~~~~~~~~~~~~~
  5. Just export previously exported lexers.
  6. :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS.
  7. :license: BSD, see LICENSE for details.
  8. """
  9. from pygments.lexers.html import HtmlLexer, DtdLexer, XmlLexer, XsltLexer, \
  10. HamlLexer, ScamlLexer, JadeLexer
  11. from pygments.lexers.css import CssLexer, SassLexer, ScssLexer
  12. from pygments.lexers.javascript import JavascriptLexer, LiveScriptLexer, \
  13. DartLexer, TypeScriptLexer, LassoLexer, ObjectiveJLexer, CoffeeScriptLexer
  14. from pygments.lexers.actionscript import ActionScriptLexer, \
  15. ActionScript3Lexer, MxmlLexer
  16. from pygments.lexers.php import PhpLexer
  17. from pygments.lexers.webmisc import DuelLexer, XQueryLexer, SlimLexer, QmlLexer
  18. from pygments.lexers.data import JsonLexer
  19. JSONLexer = JsonLexer # for backwards compatibility with Pygments 1.5
  20. __all__ = []