Update readme.md
This commit is contained in:
parent
e8ba868b87
commit
c7f8e52d94
1 changed files with 25 additions and 23 deletions
48
readme.md
48
readme.md
|
|
@ -40,44 +40,45 @@ Text
|
||||||
;; = Textblock mit angegebener Codesprach
|
;; = Textblock mit angegebener Codesprach
|
||||||
```
|
```
|
||||||
|
|
||||||
# Simonhigh Syntax (kompakt)
|
# Simonhigh Syntax
|
||||||
|
|
||||||
## Textformatierung
|
## Textformatierung
|
||||||
```
|
```
|
||||||
#Text# → <h1>Text</h1>
|
#Text# → Titel H1
|
||||||
##Text## → <h2>Text</h2>
|
##Text## → Titel H2
|
||||||
*Text* → <strong>Text</strong>
|
*Text* → Fett
|
||||||
_Text_ → <u>Text</u>
|
_Text_ → Unterstrichen
|
||||||
/Text/ → <em>Text</em>
|
/Text/ → Kursiv
|
||||||
~Text~ → <s>Text</s>
|
~Text~ → Durchgestrichen
|
||||||
^Text^ → <sup>Text</sup>
|
^Text^ → Hochgestellt
|
||||||
^^Text^^ → <sub>Text</sub>
|
^^Text^^ → Tiefgestellt
|
||||||
\Zeichen → Escape (z. B. \# → #)
|
\Zeichen → Escape (z. B. \# → #)
|
||||||
|Text| → <p class="text-center">Text</p>
|
|Text| → Zentriert
|
||||||
|
<Text< → Rechtsbündig
|
||||||
```
|
```
|
||||||
|
|
||||||
## Listen
|
## Listen
|
||||||
```
|
```
|
||||||
-Text- → <li>Text</li>
|
-Text- → Liste
|
||||||
>-Text>- → <li style="margin-left:20px;">Text</li>
|
>-Text>- → Liste eingerückt
|
||||||
+Text+ → <ol><li>Text</li></ol>
|
+Text+ → Nummerierte Liste
|
||||||
```
|
```
|
||||||
|
|
||||||
## Links
|
## Links
|
||||||
```
|
```
|
||||||
[Text](URL) → <a href="URL">Text</a>
|
[Text](URL) → Link
|
||||||
[Text]{URL} → <a href="URL" target="_blank">Text</a>
|
[Text]{URL} → Link new Tab
|
||||||
```
|
```
|
||||||
|
|
||||||
## Code
|
## Code
|
||||||
```
|
```
|
||||||
;Text; → <code>Text</code>
|
;Text; → Code
|
||||||
;;
|
;;
|
||||||
Codeblock
|
Codeblock
|
||||||
;; → <pre><code>Codeblock</code></pre>
|
;; → Codeblock
|
||||||
;;Sprache
|
;;Sprache
|
||||||
Codeblock
|
Codeblock
|
||||||
;; → <pre><code class="language-Sprache">Codeblock</code></pre>
|
;; → Codeblock mit Angabe der Sprache
|
||||||
```
|
```
|
||||||
|
|
||||||
## Bilder
|
## Bilder
|
||||||
|
|
@ -91,14 +92,15 @@ Codeblock
|
||||||
|
|
||||||
## Fußnoten
|
## Fußnoten
|
||||||
```
|
```
|
||||||
^1[Text]^ → <sup>1</sup> + Fußnote: Text
|
^1[Text]^ → Fussnote manuelle Nummer + Text
|
||||||
^x[Text]^ → Auto-Fußnote
|
^x[Text]^ → Fussnote automatische Nummer + Text
|
||||||
```
|
```
|
||||||
|
|
||||||
## Zitate
|
## Zitate
|
||||||
```
|
```
|
||||||
\:Text: → <q>Text</q>
|
\
|
||||||
|
:Text: → Zitat
|
||||||
::
|
::
|
||||||
Text
|
Text
|
||||||
:: → <blockquote>Text</blockquote>
|
:: → Zitatblock
|
||||||
```
|
```
|
||||||
Loading…
Reference in a new issue