From 023f465379f6f96dd0ffdfd9ed7b0e0796e7cef0 Mon Sep 17 00:00:00 2001 From: Edgars Beigarts Date: Thu, 11 Sep 2014 16:38:06 +0300 Subject: [PATCH] Unescape HTML entities --- lib/saxlsx/rows_collection_parser.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/saxlsx/rows_collection_parser.rb b/lib/saxlsx/rows_collection_parser.rb index a3b4718..1dd77ee 100644 --- a/lib/saxlsx/rows_collection_parser.rb +++ b/lib/saxlsx/rows_collection_parser.rb @@ -57,7 +57,7 @@ def value_of(text) when 'n' text.to_f else - text + CGI.unescapeHTML(text) end end