Skip to content

Instantly share code, notes, and snippets.

View MaximeKjaer's full-sized avatar
🔥
This is fine.

Maxime Kjaer MaximeKjaer

🔥
This is fine.
View GitHub Profile
@olange
olange / graphviz-build-system-for-sublime.md
Created January 4, 2015 00:21
Graphviz (DOT) Build System for Sublime Text 2 and 3

To transform the currently opened Graphviz source file (in DOT Language) into a PNG:

{
    "cmd": [ "dot", "-Tpng", "-o", "$file_base_name.png", "$file"],
    "selector": "source.dot"
}

Usage