Merge commit 'd397b762dae'

This commit is contained in:
Tom Preston-Werner 2009-01-21 15:54:02 -08:00
commit 6d7a7f63bd
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ module Jekyll
end end
def xml_escape(input) def xml_escape(input)
input.gsub("<", "&lt;").gsub(">", "&gt;") input.gsub("&", "&amp;").gsub("<", "&lt;").gsub(">", "&gt;")
end end
def number_of_words(input) def number_of_words(input)