-
-
Notifications
You must be signed in to change notification settings - Fork 530
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into chris/locals-route-data
- Loading branch information
Showing
128 changed files
with
11,673 additions
and
756 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
--- | ||
title: Nebenbemerkungen | ||
description: Lerne, wie du in Starlight zusätzliche Informationen neben dem Hauptinhalt einer Seite anzeigen kannst. | ||
--- | ||
|
||
import { Aside } from '@astrojs/starlight/components'; | ||
|
||
Um sekundäre Informationen neben dem Hauptinhalt einer Seite anzuzeigen, verwende die Komponente `<Aside>`. | ||
|
||
import Preview from '~/components/component-preview.astro'; | ||
|
||
<Preview> | ||
|
||
<Aside slot="preview"> | ||
Füge nicht wesentliche, ergänzende Informationen in ein `<Aside>`. | ||
</Aside> | ||
|
||
</Preview> | ||
|
||
## Import | ||
|
||
```tsx | ||
import { Aside } from '@astrojs/starlight/components'; | ||
``` | ||
|
||
## Verwendung | ||
|
||
Zeige eine Nebenbemerkung (auch bekannt als „Hinweise“, „Ermahnungen“ oder „Aufrufe“) mit Hilfe der Komponente `<Aside>`. | ||
|
||
Ein `<Aside>` kann ein optionales [`type`](#type) Attribute haben, welches die Farbe, das Symbol und den Standardtitel der Nebenbemerkung steuert. | ||
|
||
<Preview> | ||
|
||
````mdx | ||
import { Aside } from '@astrojs/starlight/components'; | ||
|
||
<Aside>Einige Inhalte am Rande.</Aside> | ||
|
||
<Aside type="caution">Einige warnende Inhalte.</Aside> | ||
|
||
<Aside type="tip"> | ||
|
||
Auch andere Inhalte werden durch Nebenbemerkungen unterstützt. | ||
|
||
```js | ||
// Ein Codeschnipsel zum Beispiel. | ||
``` | ||
|
||
</Aside> | ||
|
||
<Aside type="danger">Gib dein Passwort nie an Dritte weiter!</Aside> | ||
```` | ||
|
||
<Fragment slot="markdoc"> | ||
|
||
````markdoc | ||
{% aside %} | ||
Einige Inhalte am Rande. | ||
{% /aside %} | ||
{% aside type="caution" %} | ||
Einige warnende Inhalte. | ||
{% /aside %} | ||
{% aside type="tip" %} | ||
Auch andere Inhalte werden durch Nebenbemerkungen unterstützt. | ||
```js | ||
// Ein Codeschnipsel zum Beispiel. | ||
``` | ||
{% /aside %} | ||
{% aside type="danger" %} | ||
Gib dein Passwort nie an Dritte weiter! | ||
{% /aside %} | ||
```` | ||
|
||
</Fragment> | ||
|
||
<Fragment slot="preview"> | ||
|
||
<Aside>Einige Inhalte am Rande.</Aside> | ||
|
||
<Aside type="caution">Einige warnende Inhalte.</Aside> | ||
|
||
<Aside type="tip"> | ||
|
||
Auch andere Inhalte werden durch Nebenbemerkungen unterstützt. | ||
|
||
```js | ||
// Ein Codeschnipsel zum Beispiel. | ||
``` | ||
|
||
</Aside> | ||
|
||
<Aside type="danger">Gib dein Passwort nie an Dritte weiter!</Aside> | ||
|
||
</Fragment> | ||
|
||
</Preview> | ||
|
||
Starlight bietet auch eine benutzerdefinierte Syntax für die Darstellung von Nebenbemerkungen in Markdown und MDX als Alternative zur `<Aside>` Komponente. | ||
Siehe den Leitfaden [„Inhalte in Markdown verfassen“](/de/guides/authoring-content/#nebenbemerkungen) für Details zu dieser Syntax. | ||
|
||
### Benutzerdefinierte Titel verwenden | ||
|
||
Überschreibe die voreingestellten Überschriften der Nebenbemerkungen mit dem Attribut [`title`](#title). | ||
|
||
<Preview> | ||
|
||
```mdx 'title="Aufgepasst!"' | ||
import { Aside } from '@astrojs/starlight/components'; | ||
<Aside type="caution" title="Aufgepasst!"> | ||
Ein Warnhinweis *mit* einem benutzerdefinierten Titel. | ||
</Aside> | ||
``` | ||
|
||
<Fragment slot="markdoc"> | ||
|
||
```markdoc 'title="Aufgepasst!"' | ||
{% aside type="caution" title="Aufgepasst!" %} | ||
Ein Warnhinweis *mit* einem benutzerdefinierten Titel. | ||
{% /aside %} | ||
``` | ||
|
||
</Fragment> | ||
|
||
<Aside slot="preview" type="caution" title="Aufgepasst!"> | ||
Ein Warnhinweis *mit* einem benutzerdefinierten Titel. | ||
</Aside> | ||
|
||
</Preview> | ||
|
||
## `<Aside>` Eigenschaften | ||
|
||
**Implementation:** [`Aside.astro`](https://github.com/withastro/starlight/blob/main/packages/starlight/user-components/Aside.astro) | ||
|
||
Die Komponente `<Aside>` akzeptiert die folgenden Eigenschaften: | ||
|
||
### `type` | ||
|
||
**Typ:** `'note' | 'tip' | 'caution' | 'danger'` | ||
**Voreinstellung:** `'note'` | ||
|
||
Die Art der Nebenbemerkung, die angezeigt werden soll: | ||
|
||
- `note` Hinweise (die Standardeinstellung) sind blau und zeigen ein Informationssymbol an. | ||
- `tip` Hinweise sind violett und zeigen ein Raketensymbol an. | ||
- `caution` Hinweise sind gelb und zeigen ein dreieckiges Warnsymbol an. | ||
- `danger` Hinweise sind rot und zeigen ein achteckiges Warnsymbol an. | ||
|
||
### `title` | ||
|
||
**Typ:** `string` | ||
|
||
Die Überschrift der anzuzeigenden Nebenbemerkung. | ||
Wenn `title` nicht gesetzt ist, wird der Standardtitel für den aktuellen `type` der Nebenbemerkung verwendet. |
Oops, something went wrong.