From f3d01cb91d11611e7d4f8e9cf906dd5c4856442b Mon Sep 17 00:00:00 2001 From: Garrett Drapala Date: Tue, 9 Apr 2013 09:37:04 -0400 Subject: [PATCH] DOC: mention new to_html() escape argument and & escaping --- RELEASE.rst | 4 ++++ doc/source/v0.11.0.txt | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/RELEASE.rst b/RELEASE.rst index b7a79e3e24175..11fe5ef1e0860 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -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** @@ -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 ============= diff --git a/doc/source/v0.11.0.txt b/doc/source/v0.11.0.txt index c6553b909f7a6..1385c217b6550 100644 --- a/doc/source/v0.11.0.txt +++ b/doc/source/v0.11.0.txt @@ -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 `__ or issue tracker on GitHub for a complete list. @@ -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