From 14c1cdef41519660860896e3df56daa307dc470e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20N=C3=BCssli?= <63254403+chnuessli@users.noreply.github.com> Date: Fri, 23 Oct 2020 08:32:17 +0200 Subject: [PATCH] Updated cheat-sheet.md and started translation I fixed an issue on cheat-sheet.md with wrong format and started translating the files in german --- cheat-sheet.md | 295 +++++++++++++++--------------- translations/de_de/cheat-sheet.md | 149 +++++++++++++++ 2 files changed, 297 insertions(+), 147 deletions(-) mode change 100644 => 100755 cheat-sheet.md create mode 100755 translations/de_de/cheat-sheet.md diff --git a/cheat-sheet.md b/cheat-sheet.md old mode 100644 new mode 100755 index 4855a5caa..7494809cb --- a/cheat-sheet.md +++ b/cheat-sheet.md @@ -1,147 +1,148 @@ ---- -layout: default -title: Markdown Cheat Sheet -description: A quick reference to the Markdown syntax. -last_modified_at: 2020-07-31 ---- - -## Overview - -This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can't cover every edge case, so if you need more information about any of these elements, refer to the reference guides for [basic syntax](/basic-syntax) and [extended syntax](/extended-syntax). - -## Basic Syntax - -These are the elements outlined in John Gruber's original design document. All Markdown applications support these elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ElementMarkdown Syntax
Heading# H1
- ## H2
- ### H3
Bold**bold text**
Italic*italicized text*
Blockquote> blockquote
Ordered List - 1. First item
- 2. Second item
- 3. Third item
-
Unordered List - - - First item
- - Second item
- - Third item
-
-
Code`code`
Horizontal Rule---
Link[title](https://www.example.com)
Image![alt text](image.jpg)
- -## Extended Syntax - -These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ElementMarkdown Syntax
Table - | Syntax | Description |
- | ----------- | ----------- |
- | Header | Title |
- | Paragraph | Text | -
Fenced Code Block```
- {
-   "firstName": "John",
-   "lastName": "Smith",
-   "age": 25
- }
- ``` -
Footnote - Here's a sentence with a footnote. [^1]

- - [^1]: This is the footnote. -
Heading ID### My Great Heading {#custom-id}
Definition List - term
- : definition -
Strikethrough~~The world is flat.~~
Task List - - [x] Write the press release
- - [ ] Update the website
- - [ ] Contact the media -
- -## Downloads - -You can download this cheat sheet as a Markdown file for use in your Markdown application. +--- +layout: default +title: Markdown Cheat Sheet +description: A quick reference to the Markdown syntax. +last_modified_at: 2020-10-22 +--- + +## Overview + +This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can't cover every edge case, so if you need more information about any of these elements, refer to the reference guides for [basic syntax](/basic-syntax) and [extended syntax](/extended-syntax). + +## Basic Syntax + +These are the elements outlined in John Gruber's original design document. All Markdown applications support these elements. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ElementMarkdown Syntax
Heading# H1
+ ## H2
+ ### H3
Bold**bold text**
Italic*italicized text*
Blockquote> blockquote
Ordered List + 1. First item
+ 2. Second item
+ 3. Third item
+
Unordered List + + - First item
+ - Second item
+ - Third item
+
+
Code`code`
Horizontal Rule---
Link[title](https://www.example.com)
Image![alt text](image.jpg)
+ +## Extended Syntax + +These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ElementMarkdown Syntax
Table + | Syntax | Description |
+ | ----------- | ----------- |
+ | Header | Title |
+ | Paragraph | Text | +
Fenced Code Block```
+ {
+   "firstName": "John",
+   "lastName": "Smith",
+   "age": 25
+ }
+ ``` +
Footnote + Here's a sentence with a footnote. [^1]

+ `` + [^1]: This is the footnote. + `` +
Heading ID### My Great Heading {#custom-id}
Definition List + term
+ : definition +
Strikethrough~~The world is flat.~~
Task List + - [x] Write the press release
+ - [ ] Update the website
+ - [ ] Contact the media +
+ +## Downloads + +You can download this cheat sheet as a Markdown file for use in your Markdown application. diff --git a/translations/de_de/cheat-sheet.md b/translations/de_de/cheat-sheet.md new file mode 100755 index 000000000..a805f863a --- /dev/null +++ b/translations/de_de/cheat-sheet.md @@ -0,0 +1,149 @@ +--- +layout: default +title: Markdown Cheat Sheet +description: Kurzreferenz zur Markdown Syntax +last_modified_at: 2020-10-22 +--- + +## Übersicht + +Dieses Markdown Kurzhandbuch gibt euch eine kurze Übersicht über alle Markdown Syntax Elemente. Solltet ihr mehr Informationen zu den einzelnen Syntax-Elementen brauchen die dieser Guide nicht abdeckt, besucht bitte folgende Dokumente. [Basic syntax](/basic-syntax) und [Extended syntax](/extended-syntax). + +## Basic Syntax + +These are the elements outlined in John Gruber's original design document. All Markdown applications support these elements. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ElementMarkdown Syntax
Heading# H1
+ ## H2
+ ### H3
Bold**bold text**
Italic*italicized text*
Blockquote> blockquote
Ordered List + 1. erstes item
+ 2. zweites item
+ 3. drittes item
+
Unordered List + + - Erstes Item
+ - Zweites Item
+ - Drittes Item
+
+
Code`code`
Horizontal Rule---
Link[title](https://www.example.com)
Image![alt text](image.jpg)
+ +## Extended Syntax + +Diese Elemente erweitern die Basic Syntax und fügt ihnen erweiterte Funktionen hinzu. Nicht alle Markdown Applikationen unterstützen diese Syntax. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ElementMarkdown Syntax
Table + | Syntax | Beschreibung |
+ | ----------- | ----------- |
+ | Header | Titel |
+ | Paragraph | Text | +
Fenced Code Block```
+ {
+   "Vorname": "John",
+   "Name": "Smith",
+   "Alter": 25
+ }
+ ``` +
Fussnote + Hier ist ein Satz mit einer Fussnote [^1]

+ ``` + [^1]: Das ist die Fussnote" + ``` +
Heading ID### Mein grosser Header {#custom-id}
Definitionsliste + term
+ : definition +
Durchgestrichen~~Die Welt ist flach.~~
Aufgabenliste + - [x] Schreibe einen Pressebericht
+ - [ ] Aktualisiere die Webseite
+ - [ ] Die Medien kontaktieren +
+ +## Downloads + +Du kannst das Markdown cheatsheet herunterladen um es in deiner Markdown Applikation zu verwenden.