File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,9 @@ pandas 0.11.0
131
131
- Add ``time() `` method to DatetimeIndex (GH3180 _)
132
132
- Return NA when using Series.str[...] for values that are not long enough
133
133
(GH3223 _)
134
+ - to_html() now accepts an optional "escape" argument to control reserved
135
+ HTML character escaping (enabled by default) and escapes ``& ``, in addition
136
+ to ``< `` and ``> ``. (GH2919 _)
134
137
135
138
**API Changes **
136
139
@@ -390,6 +393,7 @@ pandas 0.11.0
390
393
.. _GH3238 : https://github.com/pydata/pandas/issues/3238
391
394
.. _GH3258 : https://github.com/pydata/pandas/issues/3258
392
395
.. _GH3283 : https://github.com/pydata/pandas/issues/3283
396
+ .. _GH2919 : https://github.com/pydata/pandas/issues/2919
393
397
394
398
pandas 0.10.1
395
399
=============
Original file line number Diff line number Diff line change @@ -325,6 +325,10 @@ Enhancements
325
325
- Treat boolean values as integers (values 1 and 0) for numeric
326
326
operations. (GH2641_)
327
327
328
+ - to_html() now accepts an optional "escape" argument to control reserved
329
+ HTML character escaping (enabled by default) and escapes ``&``, in addition
330
+ to ``<`` and ``>``. (GH2919_)
331
+
328
332
See the `full release notes
329
333
<https://github.com/pydata/pandas/blob/master/RELEASE.rst>`__ or issue tracker
330
334
on GitHub for a complete list.
@@ -350,3 +354,4 @@ on GitHub for a complete list.
350
354
.. _GH3070: https://github.com/pydata/pandas/issues/3070
351
355
.. _GH3075: https://github.com/pydata/pandas/issues/3075
352
356
.. _GH2641: https://github.com/pydata/pandas/issues/2641
357
+ .. _GH2919: https://github.com/pydata/pandas/issues/2919
You can’t perform that action at this time.
0 commit comments