SimonUp/readme.md
2026-07-06 18:27:16 +02:00

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
```
![Alt-Text](URL) → Bild mit Alt-Text
![Alt-Text w:200 h:150](URL) → Bild mit Alt-Text und Grösse definiert
![Alt-Text left/right/center](URL) → Positioniert
![Alt-Text left33%](URL) → Ausrichtung links, 33% der Seitenbreite
![Alt-Text](URL) |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> → Zitatblockz
>[b] Text> → Bibel-Textblock
```