Links:
Example for the link to my homepage:
[the link to my homepage](https://www.jamesrdevries.com/)
Captions:
Include image text and a caption block beneath:
![Image alt text](example.png "Caption text beneath")
Tables:
Formatting can even be done within tables:
| Italics | Bold | Code | Links |
| -------- | -------- | ------ | ------- |
| *italics* | **bold** | `code` | [Link](https://www.jamesrdevries.com/) |
Italics | Bold | Code | Links |
---|---|---|---|
italics | bold | code | Link |
Code Blocks:
Enclose in 3 ticks ``` and specify the language type on the first line of ticks like this:
```rust
Then end with 3 more ticks at the start of a line.
#[derive(States, Debug, Clone, Copy, Eq, PartialEq, Hash, Default)]
pub enum AppState {
#[default]
MainMenu,
Game,
GameOver,
}
Blockquote with attribution
Don’t communicate by sharing memory, share memory by communicating.
— Rob Pike1
Headings:
Headings are a series of #
followed by a space then the text for the heading.
The heading number is determined by the number of #
.
Example for H2:
## The heading text...