Markdown alternative
Find a file
2026-07-06 17:21:38 +02:00
readme.md Update readme.md 2026-07-06 17:21:38 +02:00

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
[Text](URL) → Link
[Text]{URL} → Link new Tab

Code

;Text; → Code
;;
Codeblock
;;  → Codeblock
;;Sprache
Codeblock
;; → Codeblock mit Angabe der Sprache

Bilder

![Alt-Text](URL)        → <img src="URL" alt="Alt-Text">
![Alt-Text w:200 h:150](URL) → <img src="URL" alt="Alt-Text" style="width:200px;height:150px;">
![Alt-Text left/right/center](URL) → Positioniert
![Alt-Text left33%](URL) → <img src="URL" alt="Alt-Text" style="float\:left;width:33%;">
![Alt-Text](URL) |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