more markdown

This commit is contained in:
josh rotenberg 2021-12-18 16:00:46 -08:00
parent 09087097b5
commit 2d36cd9263
1 changed files with 18 additions and 1 deletions

View File

@ -68,6 +68,22 @@ Lists can be unordered or ordered. Ordered lists will order automatically:
## Links ## Links
Linking to a URL or local file is easy:
```markdown
Use [mdBook](https://github.com/rust-lang/mdBook).
Read about [mdBook](mdBook.md).
A bare url: <https://www.rust-lang.org>.
```
Use [mdBook](https://github.com/rust-lang/mdBook).
Read about [mdBook](mdBook.md).
A bare url: <https://www.rust-lang.org>.
## Images ## Images
Including images is simply a matter of including a link to them, much like in the _Links_ section above. The following markdown Including images is simply a matter of including a link to them, much like in the _Links_ section above. The following markdown
@ -87,4 +103,5 @@ Which, of course displays the image like so:
![The Rust Logo](images/rust-logo-blk.svg) ![The Rust Logo](images/rust-logo-blk.svg)
## Lists
See the [Markdown Guide Basic Syntax](https://www.markdownguide.org/basic-syntax/) document for more.