Right now, the quantize command help starts as this.
Remove the exact frame at timestamp 12.2 from the cast file named
1234.cast.
asciinema-edit cut \
--start=12.2 --end=12.2 \
1234.cast
quantize Updates the cast delays following quantization ranges.
The command acts on the delays between the frames, reducing such
timings to the lowest value defined in a given range that they
lie in.
Right now, the
quantize
command help starts as this.This PR fixes that.
Uses https://github.com/urfave/cli/blob/master/docs/v1/manual.md#generated-help-text and
sprig
helper for indentation.fmt.Println(cli.AppHelpTemplate)
was used to get actual template text for replacement.