Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add template functions to handle table output, fixes #176, replaces #296 #302

Merged
merged 1 commit into from
Dec 3, 2019

Conversation

coryb
Copy link
Contributor

@coryb coryb commented Dec 2, 2019

This allows for templating natives to easily generate tables.

Specify headers like:

{{- headers "abc" "def" -}}

{{- row -}} will start a new row ready to accept cell data
and you populate the table cells with {{- cell value -}}, like:

{{- row -}}
{{- cell 123 -}}
{{- cell "ghi" -}}

So a full template would look like:

{{- headers "abc" "def" -}}
{{- row -}}
{{- cell 123 -}}
{{- cell "ghi" -}}
{{- row -}}
{{- cell "string" -}}
{{- cell now.Unix -}}

And generate something this:

+--------+------------+
|  abc   |    def     |
+--------+------------+
|    123 | ghi        |
| string | 1575327457 |
+--------+------------+

Copy link
Collaborator

@mikepea mikepea left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants