This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # A Liquid tag for Jekyll sites that allows embedding Gists and showing code for non-JavaScript enabled browsers and readers. | |
| # by: Brandon Tilly | |
| # Source URL: https://gist.github.com/1027674 | |
| # Post http://brandontilley.com/2011/01/31/gist-tag-for-jekyll.html | |
| # | |
| # Example usage: {% gist 1027674 gist_tag.rb %} //embeds a gist for this plugin | |
| require 'cgi' | |
| require 'digest/md5' | |
| require 'net/https' |