GithubHelp home page GithubHelp logo

pombredanne / pygments-lexer-babylon Goto Github PK

View Code? Open in Web Editor NEW

This project forked from richardbann/pygments-lexer-babylon

0.0 1.0 0.0 12.33 MB

A javascript lexer for Pygments that uses the babylon parser

Dockerfile 5.01% Shell 4.70% Python 48.87% JavaScript 18.06% HTML 23.36%

pygments-lexer-babylon's Introduction

pygments-lexer-babylon

A javascript lexer for Pygments that uses the babylon parser

WARNING!

Node.js must be installed to use this package. Set the environment variable PYGMENTS_NODE_COMMAND to the command you use to run Node. The default is nodejs. If the following command works, you are most probably OK:

nodejs -v

Why?

Pygments can not properly highlight new and shiny javascript (particulary jsx). Until all these features are implemented in Pygments, you can use this package as a fallback. Also, it is a good fun to experiment with various technologies ๐Ÿ˜‰.

Install

Nothing too much here, apart from the Node.js dependency:

pip install pygments-lexer-babylon

This will install Pygments for you (>=2.1), so if something depends on an older version, virtualenv is recommended. (Or use docker...)

Usage

The importable name of the package: pygmentslexerbabylon. It provides two lexers: BabylonLexer and BabylonHtmlLexer. The latter is needed because the built in HtmlLexer hard codes the usage of JavascriptLexer between <script> tags.

If you have "manual" control over which lexer to use, do something like this:

from pygments import highlight
from pygments.formatters import HtmlFormatter
from pygmentslexerbabylon import BabylonLexer

lexer = BabylonLexer()  # You select it manually...
formatter = HtmlFormatter(linenos=True, cssclass="source")
code = '<ReactComponent/>'
result = highlight(code, lexer, formatter)

In some cases you do not have control over the selected lexer. Let's say, you use Markdown, which turns out to use code like this:

from pygments.lexers import get_lexer_by_name, guess_lexer

try:
    lexer = get_lexer_by_name(self.lang)
except ValueError:
    try:
        lexer = guess_lexer(self.src)
    except ValueError:
        lexer = get_lexer_by_name('text')

In this case use language name jsx for javascript files and htmlx for html files.

If you use the pygmentize all the above works:

$ pygmentize -l jsx myreact.js  # Note the extension is not jsx
$ pygmentize myreact.jsx
$ pygmentize -l htmlx htmlwithjsx.html
$ pygmentize htmlwithjsx.htmlx

Gotchas

  • It is a bit slower than Pygments...
  • May fail for really large files (0.5 MB worked for me though)
  • Produces slightly different result than the original Pygments lexer

pygments-lexer-babylon's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.