Force standard __repr__() instead of _repr_html_()

I was wondering if it is possible to force the standard __repr__() of an object in a notebook environment for objects that also define _repr_html_(). My use case involves writing documentation in a notebook for an audience that I’m assuming is using a normal REPL. I know that I can force this repr with repr(x), but I don’t want to do that because that’s not what people would type in their REPL (they would just type x).