documentation home

Hide Sidebar

Since Miredot 2.1 you can hide the sidebar in the HTML output. This is done by setting the the hideSidebar configuration parameter.

Configuration

Maven:
<configuration>
    <output>
        <html>
            <hideSidebar>
                true
            </hideSidebar>
        </html>
    </output>
</configuration>
Gradle:
output {
    formats {
        'html' {
            hideSidebar = true
        }
    }
}