go-jira / jira

simple jira command line client in Go
Apache License 2.0
2.67k stars 326 forks source link

add ability to put a table anywhere #497

Open kwstannard opened 11 months ago

kwstannard commented 11 months ago

Given a template:

{{- newTable (sub termWidth 10) -}}
{{- tblHeaders "hello" -}}
{{- tblRow "world" -}}
{{ tableRender }}
{{ "" }}
{{- newTable (sub termWidth 10) -}}
{{- tblHeaders "goodnight" -}}
{{- tblRow "moon" -}}
{{ tableRender }}

The result will be:

| hello |
|-------|
| world |

| goodnight |
|-----------|
| moon      |