Example Formatting#
These are examples that you can copy paste and use in your site.
You can also use the gallery and look at their source to see more ways to do this.
Main page#
# Page Title
A short introduction for the top of your main page
## a heading
More content you want on your page
<!-- this line is a comment. use the following to make a menu when you add more pages by uncommenting them -->
<!--
```{toctree}
:maxdepth: 2
:hidden:
page_file_name
```
-->
About#
# About me
Example text, *italics* and **bold**
in markdown line breaks are ignored
so content like this will render all as one paragraph
unless there are two spaces at the end (like the line above)
[links look like this](with/the/url/here) for example: see more examples in the [myst markdown syntax cheatsheet](https://jupyterbook.org/en/stable/reference/cheatsheet.html)
## subheading example
- starting lines like this
- makes them into a bulleted
- list when your page builds
Project Grid#
# Project Grid
<!-- this creates a grid with 3 columns -->
::::{grid} 3
:::{grid-item-card} Title
body of a plain card
+++
footer
:::
:::{grid-item-card} Title 2
body 2
+++
footer2
:::
::::
<!--
https://sphinx-design.readthedocs.io/en/latest/grids.html#placing-a-card-in-a-grid -->