Convert Atom stylesheets into Pygments-compatible syntax highlighting.
You'll need CoffeeScript installed. You'll also need cson installed, globally:
npm install -g cson
With that out of the way, you can now run script/add-language, which takes two arguments:
- The GitHub
username/repository
with a language file you're interested in - The name of the
<grammer>.cson
file you want to copy.
For example, to fetch Atom's CoffeeScript highlighting, you'd invoke:
script/add-language atom/language-coffee-script coffeescript
That second coffeescript
string comes from the fact that the filename under grammars is called coffeescript.cson.
Textpow does most of the heavy lifting. It reads YAML files of TextMate language definitions, and expects a processor to transform a string into some desirable output--in this case, an HTML document with Pygments class names.
Atom's syntax highlighting consists of CSON files generated from TextMate language definitions. We can easily convert this CSON to JSON, and, since JSON is considered a subset of YAML, we can use Textpow's same YAML.load
calls to generate a mapping. All this library really does is define a renderer, called pygments.render, which maps TextMate grammar rules to expected HTML. For example:
begin: <span class="c1">
end: </span>
selector: comment.line.number-sign
In this example, when Textpow detects a string falling within a comment.line.number-sign
rule, it wraps it up in <span class="c1">
.
Hey, that's cool. The definition for the HTML output is defined as a YAML file. You could write your own render format as an array of keys containing begin
, end
, and selector
.