generated from DNDs/dnd-template
Jesse James Isler
760ed1adc0
Affected files: .obsidian/appearance.json .obsidian/community-plugins.json .obsidian/daily-notes.json .obsidian/plugins/obsidian-admonition/data.json .obsidian/plugins/obsidian-admonition/main.js .obsidian/plugins/obsidian-admonition/manifest.json .obsidian/plugins/obsidian-admonition/octicons.json .obsidian/plugins/obsidian-admonition/rpg.json .obsidian/plugins/obsidian-admonition/styles.css .obsidian/starred.json .obsidian/workspace Attachment/Steinemann Technology/RTM Dokumentation/kommen.jpg Attachment/Steinemann Technology/RTM Dokumentation/qrCodeRTMAndroid.png Attachment/Steinemann Technology/RTM Dokumentation/qrCodeRTMIPhone.png Attachment/Steinemann Technology/RTM Dokumentation/sso.png Attachment/Steinemann Technology/RTM Dokumentation/webRTMlogin.png Daily/28.06.2022.md Daily/30.06.2022.md Firmen/Steinemann Technology/Notes/Penta/Änderungen.md Firmen/Steinemann Technology/Tickets/Regina Zingerli/Kalender anzeigen.md Firmen/Steinemann Technology/dokumentationRTM.docx Firmen/Steinemann Technology/dokumentationRTM.html Firmen/Steinemann Technology/dokumentationRTM.md Firmen/Steinemann Technology/~$kumentationRTM.docx Markdown Cheatsheet.md
192 lines
2.4 KiB
Markdown
192 lines
2.4 KiB
Markdown
### Headers
|
|
|
|
```markdown
|
|
# h1
|
|
## h2
|
|
### h3
|
|
#### h4
|
|
##### h5
|
|
###### h6
|
|
```
|
|
|
|
```markdown
|
|
Header 1
|
|
========
|
|
```
|
|
|
|
```markdown
|
|
Header 2
|
|
--------
|
|
```
|
|
|
|
### Emphasis
|
|
|
|
```markdown
|
|
*italic*
|
|
_italic_
|
|
```
|
|
|
|
```markdown
|
|
**bold**
|
|
__bold__
|
|
```
|
|
|
|
```markdown
|
|
***bold italic***
|
|
___bold italic___
|
|
```
|
|
|
|
```markdown
|
|
~~strikethrough~~
|
|
```
|
|
|
|
```markdown
|
|
`code`
|
|
```
|
|
|
|
### Lists
|
|
|
|
```markdown
|
|
* Item 1
|
|
* Item 2
|
|
```
|
|
|
|
```markdown
|
|
- Item 1
|
|
- Item 2
|
|
```
|
|
|
|
```markdown
|
|
- [ ] Checkbox off
|
|
- [x] Checkbox on
|
|
```
|
|
|
|
```markdown
|
|
1. Item 1
|
|
2. Item 2
|
|
```
|
|
|
|
### Links
|
|
|
|
```markdown
|
|
[link](http://google.com)
|
|
```
|
|
|
|
```markdown
|
|
[link][google]
|
|
[google]: http://google.com
|
|
```
|
|
|
|
```markdown
|
|
<http://google.com>
|
|
```
|
|
|
|
### Images
|
|
|
|
```markdown
|
|
![Image alt text](/path/to/img.jpg)
|
|
![Image alt text](/path/to/img.jpg "title")
|
|
![Image alt text][img]
|
|
```
|
|
|
|
```markdown
|
|
[img]: http://foo.com/img.jpg
|
|
```
|
|
|
|
### Code
|
|
|
|
```markdown
|
|
`inline code`
|
|
```
|
|
|
|
```
|
|
4 space indent
|
|
makes a code block
|
|
```
|
|
|
|
````markdown
|
|
```
|
|
code fences
|
|
```
|
|
````
|
|
|
|
````markdown
|
|
```js
|
|
codeFences.withLanguage()
|
|
```
|
|
````
|
|
|
|
### Blockquotes
|
|
|
|
```markdown
|
|
> This is
|
|
> a blockquote
|
|
>
|
|
> > Nested
|
|
> > Blockquote
|
|
```
|
|
|
|
### Horizontal line
|
|
|
|
```markdown
|
|
----
|
|
```
|
|
|
|
```markdown
|
|
****
|
|
```
|
|
|
|
### Tables
|
|
|
|
```markdown
|
|
| Column 1 Heading | Column 2 Heading |
|
|
| ---------------- | ---------------- |
|
|
| Some content | Other content |
|
|
```
|
|
|
|
### Infoboxes
|
|
|
|
```
|
|
> [!info]- Titel
|
|
> Some Text to this card. Adding a - behind the brackets allows the card to be collapsed
|
|
```
|
|
|
|
The Cards also come in multiple flavours:
|
|
> [!note]- note
|
|
> A note!
|
|
|
|
> [!abstract]- abstract, summary, tldr
|
|
> Some information that was too long for someone to read, or was bothered by it. Basically condensing said knowledge to the bare minimum, so noone gets upset by the length of it. Great day, innit?
|
|
|
|
> [!info]- info, todo
|
|
> Adding Information to something
|
|
|
|
> [!tip]- tip, hint, important
|
|
> Hints from someone, but I don't notice.
|
|
|
|
> [!check]- success, check, done
|
|
> Yep, this worked!
|
|
|
|
> [!question]- question, help, faq
|
|
> What shall we do with the drunken sailor?
|
|
|
|
> [!warning]- warning, caution, attention
|
|
> **Warning:** *Vital signs critical*
|
|
|
|
> [!missing]- failure, fail, missing
|
|
> Aaaaand this did not...
|
|
|
|
> [!danger]- danger, error
|
|
> We should REALLY fix that air-leak in our spaceship...
|
|
|
|
> [!bug]- bug
|
|
> Issue [#69] on Github
|
|
|
|
> [!example]- example
|
|
> Hold my beer
|
|
|
|
> [!quote]- quote, cite
|
|
> I didn't expect this to happen!
|
|
|
|
### Internal Linking
|