When the html output is truncated (by using `mmax_rows=..`), you get `...` to indicate this, but not when using ``index=False``: ```python df = pd.DataFrame(np.random.randn(5,2)) df.to_html(max_rows=4, index=False) ```  cc @TomAugspurger follow-up from #14999