Markdown
Last update: 05. March 2023 (Created: 19. February 2023)Markdown
See this markdownguide.org for an excellent markdown reference.
Cheat Sheet
Taken from https://www.markdownguide.org/cheat-sheet/. Here are some of the most common elements:
# H1 {#custom-heading-id}
## H2
### H3
...
###### H6
*italic text*
**bold text**
***bold italic text***
~~strikethrough~~
==highlight==
> blockquote
1. ordered list item 1
2. ordered list item 2
3. ordered list item 3
- unordered list item 1
- unordered list item 2
- unordered list item 3
`inline code`
Horizontal rule: ---
Link: [link](https://link.to/site)
Embed image: ![alt text](image.jpg)
|Col1|Col2 |Col3|
|:---|-------|---:|
|cont|cont |cont|
Code block (omit the \)
```cpp
int x = 5
```\
Here is a sentence with a footnote. [^1]
[^1]: This is the footnote.
- [x] Task 1
- [ ] Task 2
- [ ] Task 3