lib/octopress-gist/gist.rb in octopress-gist-1.0.0 vs lib/octopress-gist/gist.rb in octopress-gist-1.0.1
- old
+ new
@@ -13,10 +13,11 @@
if Pygments.clean_markup(@markup) =~ /([\S]*)\s*(\S*)/
gist_id, filename = $1.strip, $2.strip
filename = $2.strip == "" ? nil : $2.strip
options = {
gist_id: $1.strip,
- cache: !@cache_disabled
+ cache: !@cache_disabled,
+ escape: false
}
options = Pygments.parse_markup(@markup, options)
if @cache_disabled or ! gist = Cache.read_cache(options)
gist = download_gist(options)