In the Dokka 1.4.20, is there a way to disable the...
# dokka
a
In the Dokka 1.4.20, is there a way to disable the "On This Page" tab in the html output? It covers up the scroll bar, and there's already a table of contents in the side panel with the same links.
k
TBH the easiest way would be to provide custom CSS file with
Copy code
.page-summary { 
    display: none;
}
as our React is not configurable at the moment