documentation home

Hide Miredot logo

Since Miredot 1.6 you can hide the Miredot logo in the HTML output. This is done by setting the the hideLogoOnTop configuration parameter.

Configuration

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