vmware-tanzu-labs / educates-training-platform

A platform for hosting interactive workshop environments in Kubernetes, or on top of a local container runtime.
https://docs.educates.dev
Apache License 2.0
72 stars 18 forks source link

Cascade on actions not working when action followed by text. #388

Closed GrahamDumpleton closed 4 months ago

GrahamDumpleton commented 4 months ago

Describe the bug

With Hugo renderer (not sure about classic), when a clickable action has text following it, cascade for clickable actions is no longer working.

Thus this doesn't work:

```terminal:execute
command: echo one
cascade: true
```

xxx

```terminal:execute
command: echo two
cascade: true
```

But this does:

```terminal:execute
command: echo one
cascade: true
```

```terminal:execute
command: echo two
cascade: true
```

Additional information

No response