cowork:starconnect:public:markdownsyntax.md
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen RevisionVorhergehende Überarbeitung | |||
| cowork:starconnect:public:markdownsyntax.md [2025/05/16 10:53] – alte Version wiederhergestellt (2025/04/20 04:52) 20.171.207.88 | cowork:starconnect:public:markdownsyntax.md [2025/05/20 00:46] (aktuell) – alte Version wiederhergestellt (2025/05/15 14:55) 20.171.207.240 | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| + | < | ||
| + | Markdown Cheatsheet< | ||
| + | =================== | ||
| + | - - - - | ||
| + | # Heading 1 # | ||
| + | |||
| + | # Heading 1 # | ||
| + | |||
| + | -OR- | ||
| + | |||
| + | Heading 1 | ||
| + | ============= (below H1 text) | ||
| + | |||
| + | Heading 2 | ||
| + | --------------- | ||
| + | |||
| + | ## Heading 2 | ||
| + | |||
| + | -OR- | ||
| + | | ||
| + | Heading 2 | ||
| + | --------- (below H2 text) | ||
| + | |||
| + | ### Heading 3 ### | ||
| + | |||
| + | ### Heading 3 ### | ||
| + | |||
| + | #### Heading 4 #### | ||
| + | |||
| + | #### Heading 4 #### | ||
| + | |||
| + | |||
| + | |||
| + | Common text Common text Common text | ||
| + | Common text | ||
| + | |||
| + | Common text | ||
| + | |||
| + | Common text Common text Common text | ||
| + | Common text. | ||
| + | |||
| + | Common text. | ||
| + | |||
| + | |||
| + | _Emphasized text_ | ||
| + | |||
| + | _Emphasized text_ or *Emphasized text* | ||
| + | |||
| + | ~~Strikethrough text~~ | ||
| + | |||
| + | ~~Strikethrough text~~ | ||
| + | |||
| + | __Strong text__ | ||
| + | |||
| + | __Strong text__ or **Strong text** | ||
| + | |||
| + | ___Strong emphasized text___ | ||
| + | |||
| + | ___Strong emphasized text___ or ***Strong emphasized text*** | ||
| + | |||
| + | [Named Link](http:// | ||
| + | |||
| + | [Named Link](http:// | ||
| + | |||
| + | [heading-1](# | ||
| + | | ||
| + | [heading-1](# | ||
| + | |||
| + | Table, like this one : | ||
| + | |||
| + | First Header | ||
| + | ------------- | ------------- | ||
| + | Content Cell | Content Cell | ||
| + | Content Cell | Content Cell | ||
| + | |||
| + | ``` | ||
| + | First Header | ||
| + | ------------- | ------------- | ||
| + | Content Cell | Content Cell | ||
| + | Content Cell | Content Cell | ||
| + | ``` | ||
| + | |||
| + | Adding a pipe `|` in a cell : | ||
| + | |||
| + | First Header | ||
| + | ------------- | ------------- | ||
| + | Content Cell | Content Cell | ||
| + | Content Cell | \| | ||
| + | |||
| + | ``` | ||
| + | First Header | ||
| + | ------------- | ------------- | ||
| + | Content Cell | Content Cell | ||
| + | Content Cell | \| | ||
| + | ``` | ||
| + | |||
| + | Left, right and center aligned table | ||
| + | |||
| + | Left aligned Header | Right aligned Header | Center aligned Header | ||
| + | | :--- | ---: | :---: | ||
| + | Content Cell | Content Cell | Content Cell | ||
| + | Content Cell | Content Cell | Content Cell | ||
| + | |||
| + | ``` | ||
| + | Left aligned Header | Right aligned Header | Center aligned Header | ||
| + | | :--- | ---: | :---: | ||
| + | Content Cell | Content Cell | Content Cell | ||
| + | Content Cell | Content Cell | Content Cell | ||
| + | ``` | ||
| + | |||
| + | `code()` | ||
| + | |||
| + | `code()` | ||
| + | |||
| + | ```javascript | ||
| + | var specificLanguage_code = | ||
| + | { | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | } | ||
| + | } | ||
| + | } | ||
| + | ``` | ||
| + | |||
| + | ``` | ||
| + | without ESCAPEs sign | ||
| + | \`\`\`javascript | ||
| + | var specificLanguage_code = | ||
| + | { | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | } | ||
| + | } | ||
| + | } | ||
| + | \`\`\` | ||
| + | ``` | ||
| + | |||
| + | * Bullet list | ||
| + | * Nested bullet | ||
| + | * Sub-nested bullet etc | ||
| + | * Bullet list item 2 | ||
| + | |||
| + | ~~~ | ||
| + | * Bullet list | ||
| + | * Nested bullet | ||
| + | * Sub-nested bullet etc | ||
| + | * Bullet list item 2 | ||
| + | |||
| + | -OR- | ||
| + | |||
| + | - Bullet list | ||
| + | - Nested bullet | ||
| + | - Sub-nested bullet etc | ||
| + | - Bullet list item 2 | ||
| + | ~~~ | ||
| + | |||
| + | 1. A numbered list | ||
| + | 1. A nested numbered list | ||
| + | 2. Which is numbered | ||
| + | 2. Which is numbered | ||
| + | |||
| + | ~~~ | ||
| + | 1. A numbered list | ||
| + | 1. A nested numbered list | ||
| + | 2. Which is numbered | ||
| + | 2. Which is numbered | ||
| + | ~~~ | ||
| + | |||
| + | - [ ] An uncompleted task | ||
| + | - [x] A completed task | ||
| + | |||
| + | ~~~ | ||
| + | - [ ] An uncompleted task | ||
| + | - [x] A completed task | ||
| + | ~~~ | ||
| + | |||
| + | - [ ] An uncompleted task | ||
| + | - [ ] A subtask | ||
| + | |||
| + | ~~~ | ||
| + | - [ ] An uncompleted task | ||
| + | - [ ] A subtask | ||
| + | ~~~ | ||
| + | |||
| + | > Blockquote | ||
| + | >> Nested blockquote | ||
| + | |||
| + | > Blockquote | ||
| + | >> Nested Blockquote | ||
| + | |||
| + | _Horizontal line :_ | ||
| + | - - - - | ||
| + | |||
| + | - - - - | ||
| + | |||
| + | _Image with alt :_ | ||
| + | |||
| + |  | ||
| + | |||
| + | ``` | ||
| + | [Go To TOP](#TOP) | ||
| + | |||
| + | |||
| + | [text goes here](# | ||
| + | section_title< | ||
| + | |||
| + | ``` | ||
| + | |||
| + | Hotkey: | ||
| + | |||
| + | < | ||
| + | |||
| + | < | ||
| + | |||
| + | ``` | ||
| + | < | ||
| + | ``` | ||
| + | |||
| + | Hotkey list: | ||
| + | |||
| + | | Key | Symbol | | ||
| + | | --- | --- | | ||
| + | | Option | | | ||
| + | | Control | | | ||
| + | | Command | | | ||
| + | | Shift | | | ||
| + | | Caps Lock | | | ||
| + | | Tab | | | ||
| + | | Esc | | | ||
| + | | Power | | | ||
| + | | Return | | | ||
| + | | Delete | | | ||
| + | | Up | | | ||
| + | | Down | | | ||
| + | | Left | | | ||
| + | | Right | | | ||
| + | |||
| + | Emoji: | ||
| + | |||
| + | : | ||
| + | |||
| + | :zany_face: : | ||
| + | |||
| + | Code appears between colons :EMOJICODE: | ||
| + | |||
| + | 😄 : | ||
| + | 😊 : | ||
| + | 😏 : | ||
| + | ``` | ||
| + | :zany_face: : | ||
| + | |||
| + | 😄 : | ||
| + | 😊 : | ||
| + | 😏 : | ||
| + | ``` | ||
| + | |||
| + | </ | ||
| + | :zany_face: : | ||
| + | FIXME not all show up in Dokuwiki LOL | ||