Update readme.md

This commit is contained in:
simonpipe 2026-07-06 17:19:38 +02:00
parent e8ba868b87
commit c7f8e52d94

View file

@ -40,44 +40,45 @@ Text
;; = Textblock mit angegebener Codesprach
```
# Simonhigh Syntax (kompakt)
# Simonhigh Syntax
## Textformatierung
```
#Text# → <h1>Text</h1>
##Text## → <h2>Text</h2>
*Text* → <strong>Text</strong>
_Text_ → <u>Text</u>
/Text/ → <em>Text</em>
~Text~ → <s>Text</s>
^Text^ → <sup>Text</sup>
^^Text^^ → <sub>Text</sub>
\Zeichen → Escape (z. B. \# → #)
|Text| → <p class="text-center">Text</p>
#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- <li>Text</li>
>-Text>- <li style="margin-left:20px;">Text</li>
+Text+ <ol><li>Text</li></ol>
-Text- → Liste
>-Text>- → Liste eingerückt
+Text+ → Nummerierte Liste
```
## Links
```
[Text](URL) <a href="URL">Text</a>
[Text]{URL} <a href="URL" target="_blank">Text</a>
[Text](URL) → Link
[Text]{URL} → Link new Tab
```
## Code
```
;Text; <code>Text</code>
;Text; → Code
;;
Codeblock
;; <pre><code>Codeblock</code></pre>
;; → Codeblock
;;Sprache
Codeblock
;; <pre><code class="language-Sprache">Codeblock</code></pre>
;; → Codeblock mit Angabe der Sprache
```
## Bilder
@ -91,14 +92,15 @@ Codeblock
## Fußnoten
```
^1[Text]^ <sup>1</sup> + Fußnote: Text
^x[Text]^ → Auto-Fußnote
^1[Text]^ → Fussnote manuelle Nummer + Text
^x[Text]^ → Fussnote automatische Nummer + Text
```
## Zitate
```
\:Text: → <q>Text</q>
\
:Text: → Zitat
::
Text
:: <blockquote>Text</blockquote>
:: → Zitatblock
```