This shortcode add support for the asciinema, a CLI tool records and share terminal sessions.
1{{< asciinema [id] >}}
Position | Name | Type | Required | Default | Description |
---|---|---|---|---|---|
#0 | id | string | Y | The asciicast ID. | |
theme | string | asciinema , tango , solarized-dark , solarized-light , monokai . | |||
autoplay | boolean | false | Whether to auto play. | ||
speed | number | 1 | Playback speed. | ||
cols | number | Used to override width (in characters) of the emulated terminal. | |||
rows | number | Used to override height (in lines) of the emulated terminal. |
1{{< asciinema 573031 >}}
1{{< asciinema id=573031 theme=solarized-light >}}
1{{< asciinema id=573031 autoplay=true >}}
1{{< asciinema id=573031 speed=2.5 >}}
1{{< asciinema id=573031 cols=120 rows=20 >}}