Skip to content

Commit 3ba014f

Browse files
committed
Turn on html repr by default
1 parent 20e6236 commit 3ba014f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

doc/whats-new.rst

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ New Features
3030
By `Kai Mühlbauer <https://github.com/kmuehlbauer>`_.
3131
- implement pint support. (:issue:`3594`, :pull:`3706`)
3232
By `Justus Magin <https://github.com/keewis>`_.
33+
- The new ``Dataset._repr_html_`` and ``DataArray._repr_html_`` (introduced
34+
in 0.14.1) is now on by default. To disable, use
35+
``xarray.set_options(display_style="text")``.
3336

3437

3538
Bug fixes

xarray/core/options.py

+1-1
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)