Information Technology Grimoire

Version .0.0.1

IT Notes from various projects because I forget, and hopefully they help you too.

Markdown

Markdown Syntax

Headings

# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4
##### Heading level 5
###### Heading level 6

Emphasis

Italic
Bold
Strikethrough

*Italic*  
**Bold**  
~~Strikethrough~~

Horizontal Rule

---

Unordered Lists

  • First item
  • Second item
  • Third item
  • Fourth item
- First item
- Second item
- Third item
- Fourth item

or

  • First item
  • Second item
  • Third item
  • Fourth item
* First item
* Second item
* Third item
* Fourth item

Ordered Lists

  1. First item
  2. Second item
  3. Third item
  4. Fourth item
1. First item
2. Second item
3. Third item
4. Fourth item

Inline code

`#ffce44`

Blockquote

this is a blockquote. this is a blockquote. this is a blockquote. this is a blockquote. this is a blockquote. this is a blockquote.

this is a blockquote.

this is a blockquote.

this is a blockquote

> this is a blockquote. this is a blockquote. this is a blockquote. this is a blockquote. this is a blockquote. this is a blockquote.
>
> this is a blockquote.
>
> this is a blockquote.
>
> this is a blockquote
[Hugo Techdoc Theme demo](https://themes.gohugo.io/theme/hugo-theme-techdoc/)

Table

headerheaderheader
LoremLoremLorem
ipsumipsumipsum
dolordolordolor
sitsitsit
ametametamet
| header | header | header |
|------------|-------------|--------------|
| Lorem      | Lorem       | Lorem        |
| ipsum      | ipsum       | ipsum        |
| dolor      | dolor       | dolor        |
| sit        | sit         | sit          |
| amet       | amet        | amet         |

Images

![2 People Sitting With View of Yellow Flowers during Daytime](../images/pexels-photo-196666.jpeg "sample")
[![2 People Sitting With View of Yellow Flowers during Daytime](../images/pexels-photo-196666.jpeg)](https://www.pexels.com/photo/2-people-sitting-with-view-of-yellow-flowers-during-daytime-196666/)

Definition Lists

First Term
This is the definition.
Second Term
This is the definition.
This is the definition.
First Term
: This is the definition.

Second Term
: This is the definition.
: This is the definition.

Task Lists

  • to do task 1
  • to do task 2
  • to do task 3
- [x] to do task 1
- [ ] to do task 2
- [ ] to do task 3

Footnotes

this is a footnote,1 and this is the second footnote.2

this is a footnote,[^1] and this is the second footnote.[^2]
[^1]: This is the first footnote.
[^2]: This is the second footnote.

  1. This is the first footnote. ↩︎

  2. This is the second footnote. ↩︎