mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
29 lines
339 B
Markdown
29 lines
339 B
Markdown
# QR Code
|
|
|
|
Generate QR codes from text.
|
|
|
|
## Syntax
|
|
|
|
- **Inline**: `@[qrcode](text)`
|
|
- **Container**:
|
|
|
|
```md
|
|
::: qrcode [card] [title="..."]
|
|
text
|
|
:::
|
|
```
|
|
|
|
## Attributes
|
|
|
|
`card`, `svg`, `title="name"`, `align="center"`.
|
|
|
|
## Example
|
|
|
|
```md
|
|
@[qrcode](https://example.com)
|
|
|
|
::: qrcode card title="Scan Me"
|
|
https://example.com
|
|
:::
|
|
```
|