Update meta info, add tricks page
This commit is contained in:
parent
6e9657502d
commit
4f4e80362a
4 changed files with 23 additions and 0 deletions
|
@ -3,4 +3,5 @@ nav:
|
|||
- index.md
|
||||
- editing.md
|
||||
- syntax.md
|
||||
- tricks.md
|
||||
- custom_icons.md
|
|
@ -5,6 +5,9 @@ This page contains information on editing/making changes to this website.
|
|||
## Syntax
|
||||
Please see [:octicons-arrow-right-16: Syntax](syntax.md) for reference on various Material for MkDocs syntax you can use in your Markdown, and specific usage on this site.
|
||||
|
||||
## Tips + Tricks
|
||||
[:octicons-arrow-right-16: Tips + Tricks](tricks.md) contains some useful hints for "strange" things you might need to do every once in a while.
|
||||
|
||||
---
|
||||
|
||||
!!! example "Work in Progress"
|
||||
|
|
|
@ -8,6 +8,11 @@ This site is written in Markdown and is generated using [:simple-materialformkdo
|
|||
## Editing
|
||||
If you're looking for information about editing this site, please see [:octicons-arrow-right-16: Editing](editing.md). For specific Markdown syntax you can use with Material for MkDocs, please see [:octicons-arrow-right-16: Syntax](syntax.md).
|
||||
|
||||
## Setup notes
|
||||
Some of these pages are notes on custom configurations/setups that we're using for this site:
|
||||
|
||||
[:octicons-arrow-right-16: Custom Icons](custom_icons.md) - instructions for creating and loading custom icons/symbols for use in MkDocs
|
||||
|
||||
---
|
||||
|
||||
!!! example "Work in Progress"
|
||||
|
|
14
docs/handbook/meta/tricks.md
Normal file
14
docs/handbook/meta/tricks.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
# 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
|
||||
<style>
|
||||
.md-typeset h1 {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue