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