67 lines
No EOL
1.3 KiB
Markdown
67 lines
No EOL
1.3 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< → Rechtsbündig
|
|
```
|
|
|
|
### Listen
|
|
```
|
|
-Text- → Liste
|
|
>-Text>- → Liste eingerückt
|
|
+Text+ → Nummerierte Liste
|
|
```
|
|
|
|
### Links
|
|
```
|
|
[Text](URL) → Link
|
|
[Text]{URL} → Link new Tab
|
|
```
|
|
|
|
### Code
|
|
```
|
|
;Text; → Code
|
|
;;
|
|
Codeblock
|
|
;; → Codeblock
|
|
;;Sprache
|
|
Codeblock
|
|
;; → Codeblock mit Angabe der Sprache
|
|
```
|
|
|
|
### Bilder
|
|
```
|
|
 → <img src="URL" alt="Alt-Text">
|
|
 → <img src="URL" alt="Alt-Text" style="width:200px;height:150px;">
|
|
 → Positioniert
|
|
 → <img src="URL" alt="Alt-Text" style="float\:left;width:33%;">
|
|
 |Unterschrift| → <figure><img src="URL" alt="Alt-Text"><figcaption class="text-center">Unterschrift</figcaption></figure>
|
|
```
|
|
|
|
### Fussnoten
|
|
```
|
|
^1[Text]^ → Fussnote manuelle Nummer + Text
|
|
^x[Text]^ → Fussnote automatische Nummer + Text
|
|
```
|
|
|
|
### Zitate
|
|
```
|
|
:Text: → Zitat
|
|
::
|
|
Text
|
|
:: → Zitatblock
|
|
``` |