You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
531 B
Markdown
24 lines
531 B
Markdown
# Quotes
|
|
|
|
Snekdown supports standard markdown quotes with `>` and quotes with additional metadata:
|
|
|
|
Simple (default) Syntax:
|
|
```
|
|
> This is a quote
|
|
```
|
|
> This is a quote
|
|
|
|
|
|
Multiline Quotes:
|
|
```md
|
|
> This is a
|
|
> Multiline Quote
|
|
```
|
|
> This is a
|
|
> Multiline Quote
|
|
|
|
You can even add add additional metadata to quotes, like the autor or year:
|
|
```md
|
|
[author=Trivernis year=2020 display='{{author}} - {{year}}']> This is a quote with metadata
|
|
```
|
|
[author=Trivernis year=2020 display='{{author}} - {{year}}']> This is a quote with metadata |