go-jira / jira

simple jira command line client in Go
Apache License 2.0
2.68k stars 328 forks source link

add ability to put a table anywhere #497

Open kwstannard opened 1 year ago

kwstannard commented 1 year 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      |