Update readme.md
This commit is contained in:
parent
9be62beb3d
commit
e8ba868b87
1 changed files with 63 additions and 0 deletions
63
readme.md
63
readme.md
|
|
@ -39,3 +39,66 @@ Text
|
||||||
Text
|
Text
|
||||||
;; = Textblock mit angegebener Codesprach
|
;; = Textblock mit angegebener Codesprach
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Simonhigh Syntax (kompakt)
|
||||||
|
|
||||||
|
## 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>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Listen
|
||||||
|
```
|
||||||
|
-Text- → <li>Text</li>
|
||||||
|
>-Text>- → <li style="margin-left:20px;">Text</li>
|
||||||
|
+Text+ → <ol><li>Text</li></ol>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Links
|
||||||
|
```
|
||||||
|
[Text](URL) → <a href="URL">Text</a>
|
||||||
|
[Text]{URL} → <a href="URL" target="_blank">Text</a>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Code
|
||||||
|
```
|
||||||
|
;Text; → <code>Text</code>
|
||||||
|
;;
|
||||||
|
Codeblock
|
||||||
|
;; → <pre><code>Codeblock</code></pre>
|
||||||
|
;;Sprache
|
||||||
|
Codeblock
|
||||||
|
;; → <pre><code class="language-Sprache">Codeblock</code></pre>
|
||||||
|
```
|
||||||
|
|
||||||
|
## 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>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Fußnoten
|
||||||
|
```
|
||||||
|
^1[Text]^ → <sup>1</sup> + Fußnote: Text
|
||||||
|
^x[Text]^ → Auto-Fußnote
|
||||||
|
```
|
||||||
|
|
||||||
|
## Zitate
|
||||||
|
```
|
||||||
|
\:Text: → <q>Text</q>
|
||||||
|
::
|
||||||
|
Text
|
||||||
|
:: → <blockquote>Text</blockquote>
|
||||||
|
```
|
||||||
Loading…
Reference in a new issue