14 lines
No EOL
350 B
Markdown
14 lines
No EOL
350 B
Markdown
# 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](../../support/index.md)), paste this style block somewhere on the page:
|
|
|
|
``` html linenums="1"
|
|
<style>
|
|
.md-typeset h1 {
|
|
display: none;
|
|
}
|
|
</style>
|
|
``` |