# 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>- β†’ 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 ``` ![Alt-Text](URL) β†’ Alt-Text ![Alt-Text w:200 h:150](URL) β†’ Alt-Text ![Alt-Text left/right/center](URL) β†’ Positioniert ![Alt-Text left33%](URL) β†’ Alt-Text ![Alt-Text](URL) |Unterschrift| β†’
Alt-Text
Unterschrift
``` ### Fussnoten ``` ^1[Text]^ β†’ Fussnote manuelle Nummer + Text ^x[Text]^ β†’ Fussnote automatische Nummer + Text ``` ### Zitate ``` :Text: β†’ Zitat :: Text :: β†’ Zitatblock ```