master > master: protokoll - Markdown
This commit is contained in:
parent
b1a467b2e4
commit
1ee5e7415b
@ -29,8 +29,41 @@ Dann gibt es immer plaintext. Aber eine Stufe besser ist **Markdown**. Markdown
|
||||
- Komplexe Textformats mit sehr intuitiver Syntax möglich:
|
||||
- Überschriften
|
||||
- Listen
|
||||
- Tabellen
|
||||
- Code Blocks (in diversen Sprachen)
|
||||
- Tabellen. Z. B. man gibt
|
||||
```
|
||||
| Objekt | Kosten | Wert |
|
||||
| :----: | -----: | ---: |
|
||||
| Apfel | 1,30€ | 301 |
|
||||
| Orange | 2€ | 440 |
|
||||
```
|
||||
ein und bekommt
|
||||
|
||||
| Objekt | Kosten | Wert |
|
||||
| :----: | -----: | ---: |
|
||||
| Apfel | 1,30€ | 301 |
|
||||
| Orange | 2€ | 440 |
|
||||
|
||||
raus.
|
||||
- Code Blocks (in diversen Sprachen). Z. B. man gibt
|
||||
```
|
||||
'''java
|
||||
public class HelloWorld {
|
||||
public static void main (String[] args) {
|
||||
System.out.println("Hello World!");
|
||||
}
|
||||
}
|
||||
'''
|
||||
```
|
||||
(mit Backticks statt `'''`) und bekommt
|
||||
```java
|
||||
public class HelloWorld {
|
||||
public static void main (String[] args) {
|
||||
System.out.println("Hello World!");
|
||||
}
|
||||
}
|
||||
```
|
||||
raus.
|
||||
|
||||
- URIs
|
||||
- interne Verlinkungen!
|
||||
- sogar Mathe-Formeln mit (simplem) LaTeX-Code
|
||||
|
Loading…
x
Reference in New Issue
Block a user