Skip to content

Instantly share code, notes, and snippets.

@joshareed
Created August 13, 2013 22:13
Show Gist options
  • Save joshareed/6226242 to your computer and use it in GitHub Desktop.
Save joshareed/6226242 to your computer and use it in GitHub Desktop.
A simple GRASS plugin for embedding Gists
class GistPlugin {
def config
def setupBinding(binding) {
binding.gist = { user, id ->
"""<script src="https://gist.github.com/${user}/${id}.js"></script>"""
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment