Skip to content

Commit

Permalink
DOC: mention new to_html() escape argument and & escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
gdraps committed Apr 9, 2013
1 parent 698d881 commit f3d01cb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions RELEASE.rst
Expand Up @@ -131,6 +131,9 @@ pandas 0.11.0
- Add ``time()`` method to DatetimeIndex (GH3180_)
- Return NA when using Series.str[...] for values that are not long enough
(GH3223_)
- to_html() now accepts an optional "escape" argument to control reserved
HTML character escaping (enabled by default) and escapes ``&``, in addition
to ``<`` and ``>``. (GH2919_)

**API Changes**

Expand Down Expand Up @@ -390,6 +393,7 @@ pandas 0.11.0
.. _GH3238: https://github.com/pydata/pandas/issues/3238
.. _GH3258: https://github.com/pydata/pandas/issues/3258
.. _GH3283: https://github.com/pydata/pandas/issues/3283
.. _GH2919: https://github.com/pydata/pandas/issues/2919

pandas 0.10.1
=============
Expand Down
5 changes: 5 additions & 0 deletions doc/source/v0.11.0.txt
Expand Up @@ -325,6 +325,10 @@ Enhancements
- Treat boolean values as integers (values 1 and 0) for numeric
operations. (GH2641_)

- to_html() now accepts an optional "escape" argument to control reserved
HTML character escaping (enabled by default) and escapes ``&``, in addition
to ``<`` and ``>``. (GH2919_)

See the `full release notes
<https://github.com/pydata/pandas/blob/master/RELEASE.rst>`__ or issue tracker
on GitHub for a complete list.
Expand All @@ -350,3 +354,4 @@ on GitHub for a complete list.
.. _GH3070: https://github.com/pydata/pandas/issues/3070
.. _GH3075: https://github.com/pydata/pandas/issues/3075
.. _GH2641: https://github.com/pydata/pandas/issues/2641
.. _GH2919: https://github.com/pydata/pandas/issues/2919

0 comments on commit f3d01cb

Please sign in to comment.