Skip to content

Commit f3d01cb

Browse files
committed
DOC: mention new to_html() escape argument and & escaping
1 parent 698d881 commit f3d01cb

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

RELEASE.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ pandas 0.11.0
131131
- Add ``time()`` method to DatetimeIndex (GH3180_)
132132
- Return NA when using Series.str[...] for values that are not long enough
133133
(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_)
134137

135138
**API Changes**
136139

@@ -390,6 +393,7 @@ pandas 0.11.0
390393
.. _GH3238: https://github.com/pydata/pandas/issues/3238
391394
.. _GH3258: https://github.com/pydata/pandas/issues/3258
392395
.. _GH3283: https://github.com/pydata/pandas/issues/3283
396+
.. _GH2919: https://github.com/pydata/pandas/issues/2919
393397

394398
pandas 0.10.1
395399
=============

doc/source/v0.11.0.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,10 @@ Enhancements
325325
- Treat boolean values as integers (values 1 and 0) for numeric
326326
operations. (GH2641_)
327327

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+
328332
See the `full release notes
329333
<https://github.com/pydata/pandas/blob/master/RELEASE.rst>`__ or issue tracker
330334
on GitHub for a complete list.
@@ -350,3 +354,4 @@ on GitHub for a complete list.
350354
.. _GH3070: https://github.com/pydata/pandas/issues/3070
351355
.. _GH3075: https://github.com/pydata/pandas/issues/3075
352356
.. _GH2641: https://github.com/pydata/pandas/issues/2641
357+
.. _GH2919: https://github.com/pydata/pandas/issues/2919

0 commit comments

Comments
 (0)