Skip to content

Commit 7c9e7d5

Browse files
committed
Turn on html repr by default
1 parent 8512b7b commit 7c9e7d5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

doc/whats-new.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ New Features
3939
often means a user is attempting to pass multiple dimensions to group over
4040
and should instead pass a list.
4141
By `Maximilian Roos <https://github.com/max-sixty>`_
42+
- The new ``Dataset._repr_html_`` and ``DataArray._repr_html_`` (introduced
43+
in 0.14.1) is now on by default. To disable, use
44+
``xarray.set_options(display_style="text")``.
45+
4246

4347
Bug fixes
4448
~~~~~~~~~

xarray/core/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
CMAP_SEQUENTIAL: "viridis",
2121
CMAP_DIVERGENT: "RdBu_r",
2222
KEEP_ATTRS: "default",
23-
DISPLAY_STYLE: "text",
23+
DISPLAY_STYLE: "html",
2424
}
2525

2626
_JOIN_OPTIONS = frozenset(["inner", "outer", "left", "right", "exact"])

0 commit comments

Comments
 (0)