lib/hyde/utils.rb in hydeweb-0.0.5 vs lib/hyde/utils.rb in hydeweb-0.0.7

- old
+ new

@@ -1,6 +1,16 @@ module Hyde module Utils + protected + def escape_html(str) + str. + gsub('&', '&amp;'). + gsub('"', '&quot;'). + gsub('<', '&lt;'). + gsub('>', '&gt;'). + gsub("'", '&39;') + end + def same_file?(a, b) File.expand_path(a) == File.expand_path(b) end def matches_files?(needle, haystack)