about/docs/handbook/meta/tricks.md
2025-06-05 12:54:25 -04:00

350 B

Tips + Tricks

Some handy tips and tricks when working on this site:

Custom HTML

Hide page title

To hide the title on a page (like on the :octicons-arrow-right-16: Home page), paste this style block somewhere on the page:

<style>
    .md-typeset h1 {
        display: none;
    }
</style>