61 lines
No EOL
1.1 KiB
Markdown
61 lines
No EOL
1.1 KiB
Markdown
# Simonhigh statt Markdown 😉
|
|
|
|
Mein Enwurf für eine schreibfreundlichere Sprache.
|
|
|
|
## Syntax
|
|
|
|
### Textformatierung
|
|
```
|
|
#Text# → Titel H1
|
|
##Text## → Titel H2
|
|
*Text* → Fett
|
|
_Text_ → Unterstrichen
|
|
/Text/ → Kursiv
|
|
~Text~ → Durchgestrichen
|
|
^Text^ → Hochgestellt
|
|
^^Text^^ → Tiefgestellt
|
|
\Zeichen → Escape (z. B. \# → #)
|
|
|Text| → Zentriert
|
|
>Text> → Einrücken
|
|
>>Text>> → 2x Einrücken
|
|
```
|
|
|
|
### Listen
|
|
```
|
|
-Text- → Liste
|
|
+Text+ → Nummerierte Liste
|
|
```
|
|
|
|
### Links
|
|
```
|
|
[Text](URL) → Link
|
|
[Text]{URL} → Link new Tab
|
|
```
|
|
|
|
### Code
|
|
```
|
|
`Text` → Code
|
|
```
|
|
|
|
### Bilder
|
|
```
|
|
 → Bild mit Alt-Text
|
|
 → Bild mit Alt-Text und Grösse definiert
|
|
 → Positioniert
|
|
 → Ausrichtung links, 33% der Seitenbreite
|
|
 |Unterschrift| → Bild mit Bildunterschrift
|
|
```
|
|
|
|
### Fussnoten
|
|
```
|
|
^1[Text]^ → Fussnote manuelle Nummer + Text
|
|
^x[Text]^ → Fussnote automatische Nummer + Text
|
|
```
|
|
|
|
### Textblöcke
|
|
```
|
|
>[c] Text> → Codeblock
|
|
>[c Sprache] Text> → Codeblock
|
|
>[q] Text> → Zitatblock
|
|
>[b] Text> → Bibel-Textblock
|
|
``` |