output

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 18, 2026 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

Package output renders command results as stable JSON or aligned text tables.

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func WriteJSON

func WriteJSON(w io.Writer, v any) error

WriteJSON encodes v as a JSON document with a trailing newline. HTML escaping is disabled to preserve special characters.

Example
var buf bytes.Buffer
_ = WriteJSON(&buf, map[string]string{"id": "abc123", "title": "Example"})
fmt.Print(buf.String())
Output:
{"id":"abc123","title":"Example"}

func WriteTable

func WriteTable(w io.Writer, headers []string, rows [][]string) error

WriteTable writes a tab-separated text table with aligned columns using Go's tabwriter. The first row is a header; subsequent rows are data. Pass nil or an empty slice for headers to omit them.

Example
var buf bytes.Buffer
_ = WriteTable(&buf, []string{"ID", "TITLE"}, [][]string{{"abc123", "Example"}})
fmt.Print(buf.String())
Output:
ID      TITLE
abc123  Example

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL