From cdd3c0ef0c8a69ef56bc297f5a99f849fe7eb297 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sun, 24 Feb 2013 01:30:41 +0100 Subject: [PATCH] Remove 'type' attribute from script tag in gist liquid tag. --- lib/jekyll/tags/gist.rb | 2 +- test/test_tags.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/jekyll/tags/gist.rb b/lib/jekyll/tags/gist.rb index f881dd56..87a3f52f 100644 --- a/lib/jekyll/tags/gist.rb +++ b/lib/jekyll/tags/gist.rb @@ -11,7 +11,7 @@ module Jekyll end def render(context) - "" + "" end end end diff --git a/test/test_tags.rb b/test/test_tags.rb index f58475b0..783bb531 100644 --- a/test/test_tags.rb +++ b/test/test_tags.rb @@ -218,7 +218,7 @@ CONTENT end should "write script tag" do - assert_match %r{}, @result + assert_match %r{}, @result end end end