Markdown Syntax

Du bist hier:
< Alle Themen

Dieser Artikel dreht sich um die allgemeine Syntax (also Schreibweise) von sogenanntem Markdown. Dies ist ein Profi Feature und für deine Alltagsarbeit nicht nötig.

An den entsprechend gekennzeichneten Stellen kannst Du Markdown verwenden. Der große Vorteil an Markdown ist, dass Du dich rein auf das Tippen konzentrieren kannst
und die Textformatierungen nicht mehr mit der Maus erledigen musst. Kurse nutzen Markdown beispielsweise in den erweiterten Feldern „Lernziele“. Es bietet sich zum Beispiel an
eine Liste mit Spiegelstrichen einzufügen, welche dann mit Custom CSS gestyled werden kann.

Wenn Du bis hier hin nicht weißt, worum es eigentlich geht, dann macht das absolut nichts. Denn Du brauchst weder Markdown noch Custom CSS für die Erstellung von Onlinekursen.

Überschriften in Markdown

Markdown HTML Rendered Output
# Heading level 1 <h1>Heading level 1</h1>

Heading level 1

## Heading level 2 <h2>Heading level 2</h2>

Heading level 2

### Heading level 3 <h3>Heading level 3</h3>

Heading level 3

#### Heading level 4 <h4>Heading level 4</h4>

Heading level 4

##### Heading level 5 <h5>Heading level 5</h5>
Heading level 5
###### Heading level 6 <h6>Heading level 6</h6>
Heading level 6

Links in Markdown einfügen

Um Links einzufügen verwende folgende Syntax:
[Dein Link Text](https://www.apprex.de)

Möchtest Du auf andere Lektionen oder Seiten Innerhalb deiner apprex Akademie verlinken so nutzt Du an Stelle von https:// einfach nur ein / Symbol:

[Dein Link Text](/courses/mein-kurs)

Formatierungen in Markdown

Bold / Fettgedruckt / Strong

Markdown HTML Rendered Output
I just love **bold text**. I just love <strong>bold text</strong>. I just love bold text.
I just love __bold text__. I just love <strong>bold text</strong>. I just love bold text.
Love**is**bold Love<strong>is</strong>bold Loveisbold

Kursiv / Italic

Markdown HTML Rendered Output
Italicized text is the *cat's meow*. Italicized text is the <em>cat's meow</em>. Italicized text is the cat’s meow.
Italicized text is the _cat's meow_. Italicized text is the <em>cat's meow</em>. Italicized text is the cat’s meow.
A*cat*meow A<em>cat</em>meow Acatmeow

Kursiv und Fettgedruckt

Markdown HTML Rendered Output
This text is ***really important***. This text is <strong><em>really important</em></strong>. This text is really important.
This text is ___really important___. This text is <strong><em>really important</em></strong>. This text is really important.
This text is __*really important*__. This text is <strong><em>really important</em></strong>. This text is really important.
This text is **_really important_**. This text is <strong><em>really important</em></strong>. This text is really important.
This is really***very***important text. This is really<strong><em>very</em></strong>important text. This is reallyveryimportant text.

Zitate

> Dies ist ein **Zitat**

Dies ist ein Zitat

Auflistungen

Markdown HTML Rendered Output

1. First item
2. Second item
3. Third item
4. Fourth item

<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
<li>Fourth item</li>
</ol>
  1. First item
  2. Second item
  3. Third item
  4. Fourth item

1. First item
1. Second item
1. Third item
1. Fourth item

<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
<li>Fourth item</li>
</ol>
  1. First item
  2. Second item
  3. Third item
  4. Fourth item

1. First item
8. Second item
3. Third item
5. Fourth item

<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
<li>Fourth item</li>
</ol>
  1. First item
  2. Second item
  3. Third item
  4. Fourth item

1. First item
2. Second item
3. Third item
1. Indented item
2. Indented item
4. Fourth item

<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item
<ol>
<li>Indented item</li>
<li>Indented item</li>
</ol>
</li>
<li>Fourth item</li>
</ol>
  1. First item
  2. Second item
  3. Third item
    1. Indented item
    2. Indented item
  4. Fourth item

Bitte beachten

Es gibt noch deutlich mehr Markdown Funktionalitäten. Die wichtigsten haben wir hier aufgelistet. Durch eine Google Suche findest Du eine komplette Beschreibung von Markdown.

Inhaltsverzeichnis