Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# -*- coding: utf-8 -*- 

2""" 

3 pygments.lexers.web 

4 ~~~~~~~~~~~~~~~~~~~ 

5 

6 Just export previously exported lexers. 

7 

8 :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS. 

9 :license: BSD, see LICENSE for details. 

10""" 

11 

12from pygments.lexers.html import HtmlLexer, DtdLexer, XmlLexer, XsltLexer, \ 

13 HamlLexer, ScamlLexer, JadeLexer 

14from pygments.lexers.css import CssLexer, SassLexer, ScssLexer 

15from pygments.lexers.javascript import JavascriptLexer, LiveScriptLexer, \ 

16 DartLexer, TypeScriptLexer, LassoLexer, ObjectiveJLexer, CoffeeScriptLexer 

17from pygments.lexers.actionscript import ActionScriptLexer, \ 

18 ActionScript3Lexer, MxmlLexer 

19from pygments.lexers.php import PhpLexer 

20from pygments.lexers.webmisc import DuelLexer, XQueryLexer, SlimLexer, QmlLexer 

21from pygments.lexers.data import JsonLexer 

22JSONLexer = JsonLexer # for backwards compatibility with Pygments 1.5 

23 

24__all__ = []