srdperu-prawn-format 1.1.3.2 → 1.1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/prawn/format/lexer.rb +28 -19
- data/prawn-format.gemspec +1 -1
- metadata +1 -1
data/lib/prawn/format/lexer.rb
CHANGED
@@ -151,25 +151,34 @@ module Prawn
|
|
151
151
|
"ndash" => "\xE2\x80\x93",
|
152
152
|
"nbsp" => "\xC2\xA0",
|
153
153
|
"bull" => "\342\200\242",
|
154
|
-
"quot" =>
|
155
|
-
"trade" =>
|
156
|
-
"iexcl" =>
|
157
|
-
"cent" =>
|
158
|
-
"pound" =>
|
159
|
-
"curren" =>
|
160
|
-
"copy" =>
|
161
|
-
"aacute" =>
|
162
|
-
"eacute" =>
|
163
|
-
"iacute" =>
|
164
|
-
"oacute" =>
|
165
|
-
"uacute" =>
|
166
|
-
"Aacute" =>
|
167
|
-
"Eacute" =>
|
168
|
-
"Iacute" =>
|
169
|
-
"Oacute" =>
|
170
|
-
"Uacute" =>
|
171
|
-
"ntilde" =>
|
172
|
-
"Ntilde" =>
|
154
|
+
"quot" => "\x22",
|
155
|
+
"trade" => "\xE2\x84\xA2",
|
156
|
+
"iexcl" => "\xC2\xA1",
|
157
|
+
"cent" => "\xC2\xA2",
|
158
|
+
"pound" => "\xC2\xA3",
|
159
|
+
"curren" => "\xC2\xA4",
|
160
|
+
"copy" => "\xC2\xA9",
|
161
|
+
"aacute" => "\xC3\xA1",
|
162
|
+
"eacute" => "\xC3\xA9",
|
163
|
+
"iacute" => "\xC3\xAD",
|
164
|
+
"oacute" => "\xC3\xB3",
|
165
|
+
"uacute" => "\xC3\xBA",
|
166
|
+
"Aacute" => "\xC3\x81",
|
167
|
+
"Eacute" => "\xC3\x89",
|
168
|
+
"Iacute" => "\xC3\x8D",
|
169
|
+
"Oacute" => "\xC3\x93",
|
170
|
+
"Uacute" => "\xC3\x9A",
|
171
|
+
"ntilde" => "\xC3\xB1",
|
172
|
+
"Ntilde" => "\xC3\x91",
|
173
|
+
"Uuml" => "\xC3\x9C",
|
174
|
+
"uuml" => "\xC3\xBC",
|
175
|
+
"iquest" => "\xC2\xBF",
|
176
|
+
"iexcl" => "\xC2\xA1",
|
177
|
+
"ldquo" => "\xE2\x80\x9C",
|
178
|
+
"rdquo" => "\xE2\x80\x9D",
|
179
|
+
"rsquo" => "\xE2\x80\x99",
|
180
|
+
"lsquo" => "\xE2\x80\x98"
|
181
|
+
|
173
182
|
}
|
174
183
|
|
175
184
|
def scan_entity
|
data/prawn-format.gemspec
CHANGED